2013-02-21 11:00:11 +00:00
|
|
|
{ stdenv, fetchurl, neon, zlib }:
|
2009-12-08 13:08:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-09-24 13:42:24 +01:00
|
|
|
name = "davfs2-1.5.3";
|
2009-12-08 13:08:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/davfs2/${name}.tar.gz";
|
2016-09-24 13:42:24 +01:00
|
|
|
sha256 = "1x9ri19995ika89cmc56za7z3ipiizhh6zdhi4mf4p7chxzdnhrw";
|
2009-12-08 13:08:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ neon zlib ];
|
2012-09-03 23:45:17 +01:00
|
|
|
|
2016-03-31 13:14:32 +01:00
|
|
|
patches = [ ./isdir.patch ./fix-sysconfdir.patch ];
|
2013-02-21 11:00:11 +00:00
|
|
|
|
|
|
|
configureFlags = "--sysconfdir=/etc";
|
2009-12-08 13:08:27 +00:00
|
|
|
|
2016-03-31 13:14:32 +01:00
|
|
|
makeFlags = ["sbindir=$(out)/sbin" "ssbindir=$(out)/sbin"];
|
|
|
|
|
2009-12-08 13:08:27 +00:00
|
|
|
meta = {
|
2013-02-21 11:00:11 +00:00
|
|
|
homepage = "http://savannah.nongnu.org/projects/davfs2";
|
2016-06-20 11:53:46 +01:00
|
|
|
description = "Mount WebDAV shares like a typical filesystem";
|
2013-02-21 11:00:11 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Web Distributed Authoring and Versioning (WebDAV), an extension to
|
|
|
|
the HTTP-protocol, allows authoring of resources on a remote web
|
|
|
|
server. davfs2 provides the ability to access such resources like
|
|
|
|
a typical filesystem, allowing for use by standard applications
|
|
|
|
with no built-in support for WebDAV.
|
|
|
|
'';
|
2009-12-08 13:08:27 +00:00
|
|
|
|
2013-02-21 11:00:11 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2016-05-16 21:30:20 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.peti ];
|
2009-12-08 13:08:27 +00:00
|
|
|
};
|
|
|
|
}
|