2013-02-21 11:00:11 +00:00
|
|
|
{ stdenv, fetchurl, neon, zlib }:
|
2009-12-08 13:08:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-05 11:17:28 +00:00
|
|
|
name = "davfs2-1.5.5";
|
2009-12-08 13:08:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/davfs2/${name}.tar.gz";
|
2019-03-05 11:17:28 +00:00
|
|
|
sha256 = "0bxd62268pix7w1lg7f9y94v34f4l45fdf6clyarj43qmljnlz2q";
|
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
|
|
|
|
2018-07-25 22:44:21 +01: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 = {
|
2018-12-01 17:32:32 +00:00
|
|
|
homepage = https://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;
|
2009-12-08 13:08:27 +00:00
|
|
|
};
|
|
|
|
}
|