nixpkgs/pkgs/os-specific/linux/iputils/default.nix
Armijn Hemel 3440fd020c replace iputils with a slightly older version to avoid SSL based tools being
built. Still missing are security patches though, these should be ripped
from the Fedora SRPMs...

svn path=/nixpkgs/trunk/; revision=3288
2005-07-04 12:14:06 +00:00

13 lines
306 B
Nix

{stdenv, fetchurl, kernelHeaders, glibc}:
stdenv.mkDerivation {
name = "iputils";
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;
}