2009-09-29 19:33:03 +04:00
|
|
|
{ stdenv, fetchurl }:
|
2004-02-19 15:46:35 +03:00
|
|
|
|
2012-10-16 22:29:31 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "net-tools";
|
2020-03-13 19:59:43 +03:00
|
|
|
version = "1.60_p20180626073013";
|
2012-10-16 22:29:31 +04:00
|
|
|
|
2004-02-19 15:46:35 +03:00
|
|
|
src = fetchurl {
|
2019-08-15 15:41:18 +03:00
|
|
|
url = "mirror://gentoo/distfiles/${pname}-${version}.tar.xz";
|
2020-03-13 19:59:43 +03:00
|
|
|
sha256 = "0mzsjjmz5kn676w2glmxwwd8bj0xy9dhhn21aplb435b767045q4";
|
2004-02-19 15:46:35 +03:00
|
|
|
};
|
2009-09-29 19:33:03 +04:00
|
|
|
|
|
|
|
preBuild =
|
|
|
|
''
|
|
|
|
cp ${./config.h} config.h
|
|
|
|
'';
|
|
|
|
|
2017-06-07 10:32:11 +03:00
|
|
|
makeFlags = [
|
2017-12-07 17:55:37 +03:00
|
|
|
"CC=${stdenv.cc.targetPrefix}cc"
|
|
|
|
"AR=${stdenv.cc.targetPrefix}ar"
|
2017-06-07 10:32:11 +03: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 19:33:03 +04:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://net-tools.sourceforge.net/";
|
2009-09-29 19:33:03 +04:00
|
|
|
description = "A set of tools for controlling the network subsystem in Linux";
|
2014-06-19 08:19:00 +04:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-10-13 13:39:27 +04:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-09-29 19:33:03 +04:00
|
|
|
};
|
2004-02-19 15:46:35 +03:00
|
|
|
}
|