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 {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "net-tools";
|
2020-03-13 16:59:43 +00:00
|
|
|
version = "1.60_p20180626073013";
|
2012-10-16 19:29:31 +01:00
|
|
|
|
2004-02-19 12:46:35 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz";
|
2020-03-13 16:59:43 +00:00
|
|
|
sha256 = "0mzsjjmz5kn676w2glmxwwd8bj0xy9dhhn21aplb435b767045q4";
|
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 = [
|
2017-12-07 14:55:37 +00:00
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
|
|
"AR=${stdenv.cc.targetPrefix}ar"
|
2017-06-07 08:32:11 +01:00
|
|
|
"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 = {
|
2020-04-01 02:11:51 +01: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
|
|
|
}
|