forked from mirrors/nixpkgs
Aestethic changes suggested by Eelco, and trying to fix
the problem on rpc.statd, that looks at /etc/netconfig. Problem: http://hydra.nixos.org/build/2310686/log/raw svn path=/nixpkgs/trunk/; revision=33322
This commit is contained in:
parent
f67b9d8f2d
commit
28027d4771
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||
preConfigure = ''
|
||||
echo "" > src/des_crypt.c
|
||||
|
||||
sed -es"|/etc/netconfig|$out/etc/netconfig|g" -i "doc/Makefile.in"
|
||||
sed -es"|/etc/netconfig|$out/etc/netconfig|g" -i doc/Makefile.in tirpc/netconfig.h
|
||||
'';
|
||||
|
||||
preInstall = "mkdir -p $out/etc";
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{ fetchurl, stdenv, tcpWrapper, utillinux, libcap, libtirpc, libevent, libnfsidmap, lvm2,
|
||||
e2fsprogs }:
|
||||
{ fetchurl, stdenv, tcpWrapper, utillinux, libcap, libtirpc, libevent, libnfsidmap
|
||||
, lvm2, e2fsprogs }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nfs-utils-1.2.5";
|
||||
|
@ -9,8 +9,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "16ssfkj36ljifyaskgwpd3ys8ylhi5gasq88aha3bhg5dr7yv59m";
|
||||
};
|
||||
|
||||
buildInputs = [ tcpWrapper utillinux libcap libtirpc libevent libnfsidmap lvm2
|
||||
e2fsprogs ];
|
||||
buildInputs =
|
||||
[ tcpWrapper utillinux libcap libtirpc libevent libnfsidmap
|
||||
lvm2 e2fsprogs
|
||||
];
|
||||
|
||||
# FIXME: Add the dependencies needed for NFSv4 and TI-RPC.
|
||||
configureFlags =
|
||||
|
|
Loading…
Reference in a new issue