1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00
nixpkgs/pkgs/os-specific/linux/iputils/default.nix

16 lines
378 B
Nix
Raw Normal View History

{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;
#buildInputs = [bison flex openssl];
}