nixpkgs/pkgs/tools/filesystems/davfs2/default.nix
2024-03-05 09:50:19 +01:00

63 lines
1.5 KiB
Nix

{ lib, stdenv
, fetchurl
, autoreconfHook
, neon
, procps
, substituteAll
, zlib
, wrapperDir ? "/run/wrappers/bin"
}:
stdenv.mkDerivation (finalAttrs: {
pname = "davfs2";
version = "1.7.0";
src = fetchurl {
url = "mirror://savannah/davfs2/davfs2-${finalAttrs.version}.tar.gz";
sha256 = "sha256-JR23Wic4DMoTMLG5cXAMXl3MDJDlpHYiKF8BQO3+Oi8=";
};
nativeBuildInputs = [
autoreconfHook
];
buildInputs = [
zlib
];
patches = [
./fix-sysconfdir.patch
./disable-suid.patch
(substituteAll {
src = ./0001-umount_davfs-substitute-ps-command.patch;
ps = "${procps}/bin/ps";
})
(substituteAll {
src = ./0002-Make-sure-that-the-setuid-wrapped-umount-is-invoked.patch;
inherit wrapperDir;
})
];
configureFlags = [
"--sysconfdir=/etc"
"--with-neon=${lib.getLib neon}"
];
meta = {
homepage = "https://savannah.nongnu.org/projects/davfs2";
description = "Mount WebDAV shares like a typical filesystem";
license = 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.
'';
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ fgaz ];
};
})