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