2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
2020-04-06 12:51:21 +01:00
|
|
|
, buildPackages, bison, flex, pkg-config
|
2020-04-06 12:50:15 +01:00
|
|
|
, db, iptables, libelf, libmnl
|
|
|
|
}:
|
2006-02-16 16:25:03 +00:00
|
|
|
|
2009-07-23 22:34:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-22 19:07:17 +00:00
|
|
|
pname = "iproute2";
|
2020-12-21 14:22:56 +00:00
|
|
|
version = "5.10.0";
|
2007-06-20 14:01:59 +01:00
|
|
|
|
2015-02-06 20:51:53 +00:00
|
|
|
src = fetchurl {
|
2019-03-22 19:07:17 +00:00
|
|
|
url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz";
|
2020-12-21 21:22:30 +00:00
|
|
|
sha256 = "1sakmhvh40gh4x55vzgy6cyvizqkhqalcfpvs6r0c14w62p38jm5";
|
2006-02-16 16:25:03 +00:00
|
|
|
};
|
2011-02-24 12:04:00 +00:00
|
|
|
|
2014-10-19 23:50:48 +01:00
|
|
|
preConfigure = ''
|
2020-04-06 12:50:15 +01:00
|
|
|
# Don't try to create /var/lib/arpd:
|
2014-10-19 23:50:48 +01:00
|
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
|
|
|
'';
|
2012-10-11 20:38:54 +01:00
|
|
|
|
2019-10-03 20:09:00 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2018-09-12 13:55:03 +01:00
|
|
|
|
2014-10-19 23:50:48 +01:00
|
|
|
makeFlags = [
|
2020-04-06 12:50:15 +01:00
|
|
|
"PREFIX=$(out)"
|
2014-10-19 23:50:48 +01:00
|
|
|
"SBINDIR=$(out)/sbin"
|
2019-03-22 19:07:17 +00:00
|
|
|
"DOCDIR=$(TMPDIR)/share/doc/${pname}" # Don't install docs
|
2018-09-12 13:55:03 +01:00
|
|
|
"HDRDIR=$(dev)/include/iproute2"
|
2014-10-19 23:50:48 +01:00
|
|
|
];
|
2012-10-11 20:38:54 +01:00
|
|
|
|
2015-07-27 17:24:33 +01:00
|
|
|
buildFlags = [
|
2018-09-01 19:28:23 +01:00
|
|
|
"CONFDIR=/etc/iproute2"
|
2015-07-27 17:24:33 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
2015-07-28 10:44:18 +01:00
|
|
|
"CONFDIR=$(out)/etc/iproute2"
|
2015-07-27 17:24:33 +01:00
|
|
|
];
|
|
|
|
|
2020-04-06 12:51:21 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ]; # netem requires $HOSTCC
|
2020-04-06 12:50:15 +01:00
|
|
|
nativeBuildInputs = [ bison flex pkg-config ];
|
2020-02-25 22:28:46 +00:00
|
|
|
buildInputs = [ db iptables libelf libmnl ];
|
2012-10-11 20:38:54 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-01-03 15:13:19 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-06 12:50:15 +01:00
|
|
|
homepage = "https://wiki.linuxfoundation.org/networking/iproute2";
|
2012-10-11 20:38:54 +01:00
|
|
|
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
|
2014-10-19 23:50:48 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2019-08-20 18:36:05 +01:00
|
|
|
maintainers = with maintainers; [ primeos eelco fpletz globin ];
|
2010-08-14 00:09:53 +01:00
|
|
|
};
|
2006-02-16 16:25:03 +00:00
|
|
|
}
|