Not yet working nfs-utils with dependency

svn path=/nixpkgs/trunk/; revision=9764
This commit is contained in:
Marc Weber
2007-11-20 15:55:37 +00:00
parent b98c67b1c3
commit 42ee316fcc
3 changed files with 63 additions and 12 deletions
@@ -0,0 +1,17 @@
args:
args.stdenv.mkDerivation {
name = "nfs-utils-1.1.1";
src = args.fetchurl {
url = mirror://sourceforge/nfs/nfs-utils-1.1.1.tar.gz;
sha256 = "0aa434cv7lgbrhks0rzhwxvbk2zsa17kjwxqjrrh87zrv9d2sr1x";
};
buildInputs =(with args; [kernelHeaders tcp_wrapper]);
meta = {
description = "nfs utils";
homepage = http://nfs.sourceforge.net/;
license = "GPL2";
};
}