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 {
|
2007-08-24 14:32:36 +02:00
|
|
|
url = http://www.tazenda.demon.co.uk/phil/net-tools/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
|
|
|
}
|