2020-01-11 12:13:42 -08:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
2020-04-04 00:19:51 -07:00
|
|
|
, fetchpatch
|
2020-01-11 12:13:42 -08:00
|
|
|
, neon
|
|
|
|
, procps
|
|
|
|
, substituteAll
|
|
|
|
, zlib
|
2020-11-11 03:02:02 -08:00
|
|
|
, wrapperDir ? "/run/wrappers/bin"
|
2020-01-11 12:13:42 -08:00
|
|
|
}:
|
2009-12-08 05:08:27 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-11 03:02:02 -08:00
|
|
|
name = "davfs2-1.6.0";
|
2009-12-08 05:08:27 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/davfs2/${name}.tar.gz";
|
2020-11-11 03:02:02 -08:00
|
|
|
sha256 = "sha256-LmtnVoW9kXdyvmDwmZrgmMgPef8g3BMej+xFR8u2O1A=";
|
2009-12-08 05:08:27 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ neon zlib ];
|
2012-09-03 15:45:17 -07:00
|
|
|
|
2020-01-11 12:13:42 -08:00
|
|
|
patches = [
|
|
|
|
./fix-sysconfdir.patch
|
|
|
|
(substituteAll {
|
|
|
|
src = ./0001-umount_davfs-substitute-ps-command.patch;
|
|
|
|
ps = "${procps}/bin/ps";
|
|
|
|
})
|
2020-11-11 03:02:02 -08:00
|
|
|
(substituteAll {
|
|
|
|
src = ./0002-Make-sure-that-the-setuid-wrapped-umount-is-invoked.patch;
|
|
|
|
inherit wrapperDir;
|
2020-04-04 00:19:51 -07:00
|
|
|
})
|
2020-01-11 12:13:42 -08:00
|
|
|
];
|
2013-02-21 03:00:11 -08:00
|
|
|
|
2018-07-25 14:44:21 -07:00
|
|
|
configureFlags = [ "--sysconfdir=/etc" ];
|
2009-12-08 05:08:27 -08:00
|
|
|
|
2020-01-11 12:13:42 -08:00
|
|
|
makeFlags = [
|
|
|
|
"sbindir=$(out)/sbin"
|
|
|
|
"ssbindir=$(out)/sbin"
|
|
|
|
];
|
2016-03-31 05:14:32 -07:00
|
|
|
|
2009-12-08 05:08:27 -08:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://savannah.nongnu.org/projects/davfs2";
|
2016-06-20 03:53:46 -07:00
|
|
|
description = "Mount WebDAV shares like a typical filesystem";
|
2013-02-21 03:00:11 -08: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 05:08:27 -08:00
|
|
|
|
2013-02-21 03:00:11 -08:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-12-08 05:08:27 -08:00
|
|
|
};
|
|
|
|
}
|