8 , wrapperDir ? "/run/wrappers/bin"
11 stdenv.mkDerivation rec {
16 url = "mirror://savannah/davfs2/davfs2-${version}.tar.gz";
17 sha256 = "sha256-zj65SOzlgqUck0zLDMcOZZg5FycXyv8XP2ml4q+QxcA=";
20 buildInputs = [ neon zlib ];
23 ./fix-sysconfdir.patch
25 src = ./0001-umount_davfs-substitute-ps-command.patch;
26 ps = "${procps}/bin/ps";
29 src = ./0002-Make-sure-that-the-setuid-wrapped-umount-is-invoked.patch;
34 configureFlags = [ "--sysconfdir=/etc" ];
38 "ssbindir=$(out)/sbin"
42 homepage = "https://savannah.nongnu.org/projects/davfs2";
43 description = "Mount WebDAV shares like a typical filesystem";
44 license = lib.licenses.gpl3Plus;
47 Web Distributed Authoring and Versioning (WebDAV), an extension to
48 the HTTP-protocol, allows authoring of resources on a remote web
49 server. davfs2 provides the ability to access such resources like
50 a typical filesystem, allowing for use by standard applications
51 with no built-in support for WebDAV.
54 platforms = lib.platforms.linux;