summary refs log tree commit diff
path: root/pkgs/os-specific/linux/nfs-utils/default.nix
blob: 18278ef3c34f67dd324476e00619168a6c7294dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
args: with args;
stdenv.mkDerivation {
  name = "nfs-utils-1.1.1";

  src = fetchurl {
    url = mirror://sourceforge/nfs/nfs-utils-1.1.1.tar.gz;
    sha256 = "0aa434cv7lgbrhks0rzhwxvbk2zsa17kjwxqjrrh87zrv9d2sr1x";
  };

  buildInputs = [kernelHeaders tcp_wrapper];

  meta = { 
      description = "nfs utils";
      homepage = http://nfs.sourceforge.net/;
      license = "GPL2";
  };
}