2009-09-29 17:33:03 +02:00
|
|
|
{ stdenv, fetchurl }:
|
2004-02-19 13:46:35 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2004-02-19 13:46:35 +01:00
|
|
|
name = "net-tools-1.60";
|
2009-09-29 17:33:03 +02:00
|
|
|
|
2004-02-19 13:46:35 +01:00
|
|
|
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";
|
|
|
|
};
|
2009-09-29 17:33:03 +02:00
|
|
|
|
|
|
|
patches = [ ./net-tools-labels.patch ];
|
|
|
|
|
|
|
|
preBuild =
|
|
|
|
''
|
|
|
|
cp ${./config.h} config.h
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = "BASEDIR=$(out) mandir=/share/man";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.tazenda.demon.co.uk/phil/net-tools/;
|
|
|
|
description = "A set of tools for controlling the network subsystem in Linux";
|
|
|
|
license = "GPLv2+";
|
2009-10-13 11:39:27 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-29 17:33:03 +02:00
|
|
|
};
|
2004-02-19 13:46:35 +01:00
|
|
|
}
|