nixpkgs/pkgs/os-specific/linux/iputils/default.nix
Ludovic Courtès fac9a5c936 Replace kernelHeaders' by linuxHeaders'.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19067
2009-12-21 14:04:45 +00:00

16 lines
407 B
Nix

{stdenv, fetchurl, linuxHeaders, glibc}:
assert stdenv.isLinux && stdenv.system != "powerpc-linux";
stdenv.mkDerivation {
name = "iputils-20020927";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nl.debian.org/debian/pool/main/i/iputils/iputils_20020927.orig.tar.gz;
md5 = "b5493f7a2997130a4f86c486c9993b86";
};
inherit linuxHeaders glibc;
patches = [ ./open-max.patch ];
}