2021-09-04 17:03:10 +02:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch
|
2020-04-06 13:51:21 +02:00
|
|
|
, buildPackages, bison, flex, pkg-config
|
2020-04-06 13:50:15 +02:00
|
|
|
, db, iptables, libelf, libmnl
|
2022-04-01 18:51:37 +02:00
|
|
|
, gitUpdater
|
2020-04-06 13:50:15 +02:00
|
|
|
}:
|
2006-02-16 17:25:03 +01:00
|
|
|
|
2009-07-23 23:34:53 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-22 20:07:17 +01:00
|
|
|
pname = "iproute2";
|
2022-06-19 09:55:48 +02:00
|
|
|
version = "5.18.0";
|
2007-06-20 15:01:59 +02:00
|
|
|
|
2015-02-06 21:51:53 +01:00
|
|
|
src = fetchurl {
|
2019-03-22 20:07:17 +01:00
|
|
|
url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz";
|
2022-06-19 09:55:48 +02:00
|
|
|
sha256 = "W6PUZNUcjCg1UNUH/6w9EPeuxYe3xmsMy2lQZDZGOJ4=";
|
2006-02-16 17:25:03 +01:00
|
|
|
};
|
2011-02-24 13:04:00 +01:00
|
|
|
|
2021-09-04 17:03:10 +02:00
|
|
|
patches = [
|
|
|
|
# To avoid ./configure failing due to invalid arguments:
|
|
|
|
(fetchpatch { # configure: restore backward compatibility
|
|
|
|
url = "https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/patch/?id=a3272b93725a406bc98b67373da67a4bdf6fcdb0";
|
|
|
|
sha256 = "0hyagh2lf6rrfss4z7ca8q3ydya6gg7vfhh25slhpgcn6lnk0xbv";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2014-10-20 00:50:48 +02:00
|
|
|
preConfigure = ''
|
2020-04-06 13:50:15 +02:00
|
|
|
# Don't try to create /var/lib/arpd:
|
2014-10-20 00:50:48 +02:00
|
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
|
|
|
'';
|
2012-10-11 21:38:54 +02:00
|
|
|
|
2019-10-03 21:09:00 +02:00
|
|
|
outputs = [ "out" "dev" ];
|
2018-09-12 14:55:03 +02:00
|
|
|
|
2014-10-20 00:50:48 +02:00
|
|
|
makeFlags = [
|
2020-04-06 13:50:15 +02:00
|
|
|
"PREFIX=$(out)"
|
2014-10-20 00:50:48 +02:00
|
|
|
"SBINDIR=$(out)/sbin"
|
2019-03-22 20:07:17 +01:00
|
|
|
"DOCDIR=$(TMPDIR)/share/doc/${pname}" # Don't install docs
|
2018-09-12 14:55:03 +02:00
|
|
|
"HDRDIR=$(dev)/include/iproute2"
|
2014-10-20 00:50:48 +02:00
|
|
|
];
|
2012-10-11 21:38:54 +02:00
|
|
|
|
2015-07-27 18:24:33 +02:00
|
|
|
buildFlags = [
|
2018-09-01 20:28:23 +02:00
|
|
|
"CONFDIR=/etc/iproute2"
|
2015-07-27 18:24:33 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
2015-07-28 11:44:18 +02:00
|
|
|
"CONFDIR=$(out)/etc/iproute2"
|
2015-07-27 18:24:33 +02:00
|
|
|
];
|
|
|
|
|
2020-04-06 13:51:21 +02:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ]; # netem requires $HOSTCC
|
2020-04-06 13:50:15 +02:00
|
|
|
nativeBuildInputs = [ bison flex pkg-config ];
|
2020-02-25 23:28:46 +01:00
|
|
|
buildInputs = [ db iptables libelf libmnl ];
|
2012-10-11 21:38:54 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-01-03 16:13:19 +01:00
|
|
|
|
2022-04-01 18:51:37 +02:00
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
inherit pname version;
|
|
|
|
# No nicer place to find latest release.
|
|
|
|
url = "https://git.kernel.org/pub/scm/network/iproute2/iproute2.git";
|
|
|
|
rev-prefix = "v";
|
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-06 13:50:15 +02:00
|
|
|
homepage = "https://wiki.linuxfoundation.org/networking/iproute2";
|
2012-10-11 21:38:54 +02:00
|
|
|
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
|
2014-10-20 00:50:48 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2019-08-20 19:36:05 +02:00
|
|
|
maintainers = with maintainers; [ primeos eelco fpletz globin ];
|
2010-08-14 01:09:53 +02:00
|
|
|
};
|
2006-02-16 17:25:03 +01:00
|
|
|
}
|