2009-09-29 16:33:03 +01:00
|
|
|
{ stdenv, fetchurl }:
|
2004-02-19 12:46:35 +00:00
|
|
|
|
2012-10-16 19:29:31 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-07 08:32:11 +01:00
|
|
|
name = "net-tools-1.60_p20161110235919";
|
2012-10-16 19:29:31 +01:00
|
|
|
|
2004-02-19 12:46:35 +00:00
|
|
|
src = fetchurl {
|
2012-10-16 19:29:31 +01:00
|
|
|
url = "mirror://gentoo/distfiles/${name}.tar.xz";
|
2017-06-07 08:32:11 +01:00
|
|
|
sha256 = "1kbgwkys45kb5wqhchi1kf0sfw93c1cl0hgyw7yhacxzdfxjmdfr";
|
2004-02-19 12:46:35 +00:00
|
|
|
};
|
2009-09-29 16:33:03 +01:00
|
|
|
|
|
|
|
preBuild =
|
|
|
|
''
|
|
|
|
cp ${./config.h} config.h
|
|
|
|
'';
|
|
|
|
|
2017-06-07 08:32:11 +01:00
|
|
|
makeFlags = [
|
|
|
|
"BASEDIR=$(out)"
|
|
|
|
"mandir=/share/man"
|
|
|
|
"HAVE_ARP_TOOLS=1"
|
|
|
|
"HAVE_PLIP_TOOLS=1"
|
|
|
|
"HAVE_SERIAL_TOOLS=1"
|
|
|
|
"HAVE_HOSTNAME_TOOLS=1"
|
|
|
|
"HAVE_HOSTNAME_SYMLINKS=1"
|
|
|
|
];
|
2009-09-29 16:33:03 +01:00
|
|
|
|
|
|
|
meta = {
|
2015-11-18 05:35:28 +00:00
|
|
|
homepage = http://net-tools.sourceforge.net/;
|
2009-09-29 16:33:03 +01:00
|
|
|
description = "A set of tools for controlling the network subsystem in Linux";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-10-13 10:39:27 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-29 16:33:03 +01:00
|
|
|
};
|
2004-02-19 12:46:35 +00:00
|
|
|
}
|