summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iputils/default.nix
blob: 81433a313b9e5f953885d43a5dfeacd5e61fb01d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl, linuxHeaders, glibc}:

assert stdenv.isLinux && stdenv.system != "powerpc-linux";

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 linuxHeaders glibc;
  patches = [ ./open-max.patch ];
}