1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/iputils/default.nix
Yury G. Kudryashov 6e7217a2da iputils: builder rewritten, open-max.patch added
svn path=/nixpkgs/branches/stdenv-updates/; revision=9818
2007-12-01 20:04:38 +00:00

16 lines
373 B
Nix

{stdenv, fetchurl, kernelHeaders, glibc}:
assert stdenv.isLinux;
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 kernelHeaders glibc;
patches = [ ./open-max.patch ];
}