summary refs log blame commit diff
path: root/pkgs/os-specific/linux/nfs-utils/default.nix
blob: 5240bba5d14a1314cc1d86599d8668be821a8e5d (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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";
  };
}