2020-01-11 20:13:42 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchurl
|
2020-04-04 08:19:51 +01:00
|
|
|
, fetchpatch
|
|
|
|
, autoreconfHook
|
2020-01-11 20:13:42 +00:00
|
|
|
, neon
|
|
|
|
, procps
|
|
|
|
, substituteAll
|
|
|
|
, zlib
|
|
|
|
}:
|
2009-12-08 13:08:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-01-06 08:57:30 +00:00
|
|
|
name = "davfs2-1.5.6";
|
2009-12-08 13:08:27 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://savannah/davfs2/${name}.tar.gz";
|
2020-01-06 08:57:30 +00:00
|
|
|
sha256 = "00fqadhmhi2bmdar5a48nicmjcagnmaj9wgsvjr6cffmrz6pcx21";
|
2009-12-08 13:08:27 +00:00
|
|
|
};
|
|
|
|
|
2020-04-04 08:19:51 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoreconfHook # neon-0.31.patch requires reconfiguration
|
|
|
|
];
|
|
|
|
|
2009-12-08 13:08:27 +00:00
|
|
|
buildInputs = [ neon zlib ];
|
2012-09-03 23:45:17 +01:00
|
|
|
|
2020-01-11 20:13:42 +00:00
|
|
|
patches = [
|
|
|
|
./isdir.patch
|
|
|
|
./fix-sysconfdir.patch
|
|
|
|
(substituteAll {
|
|
|
|
src = ./0001-umount_davfs-substitute-ps-command.patch;
|
|
|
|
ps = "${procps}/bin/ps";
|
|
|
|
})
|
2020-04-04 08:19:51 +01:00
|
|
|
|
|
|
|
# Fix build with neon 0.31
|
|
|
|
# http://savannah.nongnu.org/bugs/?58101
|
|
|
|
(fetchpatch {
|
|
|
|
name = "neon-0.31.patch";
|
|
|
|
url = "http://savannah.nongnu.org/bugs/download.php?file_id=48737";
|
2020-06-02 21:44:52 +01:00
|
|
|
sha256 = "117x9rql6wk230pl1nram3pp8svll9wzfs5nf407z4jnrdr1zm0j";
|
2020-04-04 08:19:51 +01:00
|
|
|
extraPrefix = ""; # empty means add 'a/' and 'b/'
|
|
|
|
})
|
2020-01-11 20:13:42 +00:00
|
|
|
];
|
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
|
|
|
|
2020-01-11 20:13:42 +00:00
|
|
|
makeFlags = [
|
|
|
|
"sbindir=$(out)/sbin"
|
|
|
|
"ssbindir=$(out)/sbin"
|
|
|
|
];
|
2016-03-31 13:14:32 +01:00
|
|
|
|
2009-12-08 13:08:27 +00:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01: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
|
|
|
};
|
|
|
|
}
|