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