2018-08-29 13:26:53 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, lib, pkgconfig, utillinux, libcap, libtirpc, libevent
|
2017-01-29 18:11:35 +00:00
|
|
|
, sqlite, kerberos, kmod, libuuid, keyutils, lvm2, systemd, coreutils, tcp_wrappers
|
2017-12-17 13:51:32 +00:00
|
|
|
, buildEnv
|
2014-09-30 09:25:38 +01:00
|
|
|
}:
|
2008-03-30 18:42:49 +01:00
|
|
|
|
2017-01-29 18:11:35 +00:00
|
|
|
let
|
|
|
|
statdPath = lib.makeBinPath [ systemd utillinux coreutils ];
|
|
|
|
|
2017-12-17 13:51:32 +00:00
|
|
|
# Not nice; feel free to find a nicer solution.
|
|
|
|
kerberosEnv = buildEnv {
|
|
|
|
name = "kerberos-env-${kerberos.version}";
|
|
|
|
paths = with lib; [ (getDev kerberos) (getLib kerberos) ];
|
|
|
|
};
|
|
|
|
|
2017-01-29 18:11:35 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "nfs-utils-${version}";
|
2018-09-26 14:36:31 +01:00
|
|
|
version = "2.3.3";
|
2007-11-20 15:55:37 +00:00
|
|
|
|
2008-01-30 17:20:48 +00:00
|
|
|
src = fetchurl {
|
2018-08-29 13:26:53 +01:00
|
|
|
url = "https://kernel.org/pub/linux/utils/nfs-utils/${version}/${name}.tar.xz";
|
2018-09-26 14:36:31 +01:00
|
|
|
sha256 = "08k36d7l8yqylscnln3p85lcfwi7r7g6n3bnslgmzc1i71wk92zn";
|
2007-11-20 15:55:37 +00:00
|
|
|
};
|
|
|
|
|
2018-08-29 13:26:53 +01:00
|
|
|
# libnfsidmap is built together with nfs-utils from the same source,
|
|
|
|
# put it in the "lib" output, and the headers in "dev"
|
|
|
|
outputs = [ "out" "dev" "lib" "man" ];
|
|
|
|
|
2017-01-29 18:11:35 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-08-29 13:26:53 +01:00
|
|
|
libtirpc libcap libevent sqlite lvm2
|
2017-01-29 18:11:35 +00:00
|
|
|
libuuid keyutils kerberos tcp_wrappers
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2010-04-27 10:43:22 +01:00
|
|
|
|
|
|
|
configureFlags =
|
2017-01-29 18:11:35 +00:00
|
|
|
[ "--enable-gss"
|
2010-04-27 10:43:22 +01:00
|
|
|
"--with-statedir=/var/lib/nfs"
|
2017-12-17 13:51:32 +00:00
|
|
|
"--with-krb5=${kerberosEnv}"
|
2018-08-30 19:11:40 +01:00
|
|
|
"--with-systemd=${placeholder "out"}/etc/systemd/system"
|
2017-01-29 18:11:35 +00:00
|
|
|
"--enable-libmount-mount"
|
2018-08-30 19:11:40 +01:00
|
|
|
"--with-pluginpath=${placeholder "lib"}/lib/libnfsidmap" # this installs libnfsidmap
|
2010-09-03 09:44:38 +01:00
|
|
|
]
|
2017-01-29 18:11:35 +00:00
|
|
|
++ lib.optional (stdenv ? glibc) "--with-rpcgen=${stdenv.glibc.bin}/bin/rpcgen";
|
2010-04-27 10:43:22 +01:00
|
|
|
|
2018-04-23 20:24:55 +01:00
|
|
|
patches = lib.optionals stdenv.hostPlatform.isMusl [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/alpinelinux/aports/cb880042d48d77af412d4688f24b8310ae44f55f/main/nfs-utils/0011-exportfs-only-do-glibc-specific-hackery-on-glibc.patch";
|
|
|
|
sha256 = "0rrddrykz8prk0dcgfvmnz0vxn09dbgq8cb098yjjg19zz6d7vid";
|
|
|
|
})
|
|
|
|
# http://openwall.com/lists/musl/2015/08/18/10
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/alpinelinux/aports/cb880042d48d77af412d4688f24b8310ae44f55f/main/nfs-utils/musl-getservbyport.patch";
|
|
|
|
sha256 = "1fqws9dz8n1d9a418c54r11y3w330qgy2652dpwcy96cm44sqyhf";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-01-29 18:11:35 +00:00
|
|
|
postPatch =
|
2015-02-16 12:51:21 +00:00
|
|
|
''
|
2017-01-29 18:11:35 +00:00
|
|
|
patchShebangs tests
|
|
|
|
sed -i "s,/usr/sbin,$out/bin,g" utils/statd/statd.c
|
|
|
|
sed -i "s,^PATH=.*,PATH=$out/bin:${statdPath}," utils/statd/start-statd
|
|
|
|
|
|
|
|
configureFlags="--with-start-statd=$out/bin/start-statd $configureFlags"
|
2017-09-18 10:42:40 +01:00
|
|
|
|
2017-07-06 19:43:22 +01:00
|
|
|
substituteInPlace systemd/nfs-utils.service \
|
|
|
|
--replace "/bin/true" "${coreutils}/bin/true"
|
2017-06-08 19:43:04 +01:00
|
|
|
|
|
|
|
substituteInPlace utils/mount/Makefile.in \
|
|
|
|
--replace "chmod 4511" "chmod 0511"
|
2017-11-08 09:27:39 +00:00
|
|
|
|
|
|
|
sed '1i#include <stdint.h>' -i support/nsm/rpc.c
|
2015-02-16 12:51:21 +00:00
|
|
|
'';
|
|
|
|
|
2017-01-29 18:11:35 +00:00
|
|
|
makeFlags = [
|
|
|
|
"sbindir=$(out)/bin"
|
|
|
|
"generator_dir=$(out)/etc/systemd/system-generators"
|
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
|
|
|
"statedir=$(TMPDIR)"
|
|
|
|
"statdpath=$(TMPDIR)"
|
|
|
|
];
|
|
|
|
|
2018-09-24 21:05:39 +01:00
|
|
|
stripDebugList = [ "lib" "libexec" "bin" "etc/systemd/system-generators" ];
|
|
|
|
|
2017-01-29 18:11:35 +00:00
|
|
|
postInstall =
|
2015-02-16 12:51:21 +00:00
|
|
|
''
|
2017-01-29 18:11:35 +00:00
|
|
|
# Not used on NixOS
|
|
|
|
sed -i \
|
|
|
|
-e "s,/sbin/modprobe,${kmod}/bin/modprobe,g" \
|
|
|
|
-e "s,/usr/sbin,$out/bin,g" \
|
|
|
|
$out/etc/systemd/system/*
|
2015-02-16 12:51:21 +00:00
|
|
|
'';
|
2007-11-20 15:55:37 +00:00
|
|
|
|
2010-08-21 18:13:28 +01:00
|
|
|
# One test fails on mips.
|
2012-10-26 10:08:02 +01:00
|
|
|
doCheck = !stdenv.isMips;
|
2010-04-27 10:43:22 +01:00
|
|
|
|
2017-01-29 18:11:35 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-03-30 18:42:49 +01:00
|
|
|
description = "Linux user-space NFS utilities";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
This package contains various Linux user-space Network File
|
|
|
|
System (NFS) utilities, including RPC `mount' and `nfs'
|
|
|
|
daemons.
|
|
|
|
'';
|
|
|
|
|
2018-08-29 13:26:53 +01:00
|
|
|
homepage = https://linux-nfs.org/;
|
2017-01-29 18:11:35 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ abbradar ];
|
2007-11-20 15:55:37 +00:00
|
|
|
};
|
|
|
|
}
|