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