2004-02-19 13:46:35 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-02-19 13:46:35 +01:00
|
|
|
name = "net-tools-1.60";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2005-08-22 10:39:27 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/net-tools-1.60.tar.bz2;
|
2004-02-19 13:46:35 +01:00
|
|
|
md5 = "888774accab40217dde927e21979c165";
|
|
|
|
};
|
|
|
|
config = ./config.h;
|
2004-12-17 14:49:04 +01:00
|
|
|
patch = ./net-tools-labels.patch;
|
2004-02-19 13:46:35 +01:00
|
|
|
}
|