571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
63 lines
1.5 KiB
Nix
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 ];
|
|
};
|
|
})
|