summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iputils/default.nix
blob: 7e69d92e84a75f52bcaa3f48ec0e1832a36d5f48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{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;
  #buildInputs = [bison flex openssl];
}