2021-09-04 15:03:10 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch
|
2020-04-06 11:51:21 +00:00
|
|
|
, buildPackages, bison, flex, pkg-config
|
2020-04-06 11:50:15 +00:00
|
|
|
, db, iptables, libelf, libmnl
|
2022-04-01 16:51:37 +00:00
|
|
|
, gitUpdater
|
2020-04-06 11:50:15 +00:00
|
|
|
}:
|
2006-02-16 16:25:03 +00:00
|
|
|
|
2009-07-23 21:34:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-22 19:07:17 +00:00
|
|
|
pname = "iproute2";
|
2023-01-04 20:50:22 +00:00
|
|
|
version = "6.1.0";
|
2007-06-20 13:01:59 +00: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";
|
2023-01-04 20:50:22 +00:00
|
|
|
sha256 = "sha256-XOEqD+xrIScl7yGHNZQbLat2JE235yZGp2AhsFN7Q6s=";
|
2006-02-16 16:25:03 +00:00
|
|
|
};
|
2011-02-24 12:04:00 +00:00
|
|
|
|
2021-09-04 15:03:10 +00: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";
|
|
|
|
})
|
2022-09-12 23:15:20 +00:00
|
|
|
|
|
|
|
# fix build on musl. applied anywhere to prevent patchrot.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://git.alpinelinux.org/aports/plain/main/iproute2/min.patch?id=4b78dbe29d18151402052c56af43cc12d04b1a69";
|
|
|
|
sha256 = "sha256-0ROZQAN3mUPPgggictr23jyA4JDG7m9vmBUhgRp4ExY=";
|
|
|
|
})
|
2021-09-04 15:03:10 +00:00
|
|
|
];
|
|
|
|
|
2014-10-19 22:50:48 +00:00
|
|
|
preConfigure = ''
|
2020-04-06 11:50:15 +00:00
|
|
|
# Don't try to create /var/lib/arpd:
|
2014-10-19 22:50:48 +00:00
|
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
|
|
|
'';
|
2012-10-11 19:38:54 +00:00
|
|
|
|
2019-10-03 19:09:00 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2018-09-12 12:55:03 +00:00
|
|
|
|
2014-10-19 22:50:48 +00:00
|
|
|
makeFlags = [
|
2020-04-06 11:50:15 +00:00
|
|
|
"PREFIX=$(out)"
|
2014-10-19 22:50:48 +00:00
|
|
|
"SBINDIR=$(out)/sbin"
|
2019-03-22 19:07:17 +00:00
|
|
|
"DOCDIR=$(TMPDIR)/share/doc/${pname}" # Don't install docs
|
2018-09-12 12:55:03 +00:00
|
|
|
"HDRDIR=$(dev)/include/iproute2"
|
2014-10-19 22:50:48 +00:00
|
|
|
];
|
2012-10-11 19:38:54 +00:00
|
|
|
|
2015-07-27 16:24:33 +00:00
|
|
|
buildFlags = [
|
2018-09-01 18:28:23 +00:00
|
|
|
"CONFDIR=/etc/iproute2"
|
2015-07-27 16:24:33 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
2015-07-28 09:44:18 +00:00
|
|
|
"CONFDIR=$(out)/etc/iproute2"
|
2015-07-27 16:24:33 +00:00
|
|
|
];
|
|
|
|
|
2020-04-06 11:51:21 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ]; # netem requires $HOSTCC
|
2020-04-06 11:50:15 +00:00
|
|
|
nativeBuildInputs = [ bison flex pkg-config ];
|
2020-02-25 22:28:46 +00:00
|
|
|
buildInputs = [ db iptables libelf libmnl ];
|
2012-10-11 19:38:54 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-01-03 15:13:19 +00:00
|
|
|
|
2022-04-01 16:51:37 +00:00
|
|
|
passthru.updateScript = gitUpdater {
|
|
|
|
# No nicer place to find latest release.
|
|
|
|
url = "https://git.kernel.org/pub/scm/network/iproute2/iproute2.git";
|
|
|
|
rev-prefix = "v";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-06 11:50:15 +00:00
|
|
|
homepage = "https://wiki.linuxfoundation.org/networking/iproute2";
|
2012-10-11 19:38:54 +00:00
|
|
|
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
|
2014-10-19 22:50:48 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2019-08-20 17:36:05 +00:00
|
|
|
maintainers = with maintainers; [ primeos eelco fpletz globin ];
|
2010-08-13 23:09:53 +00:00
|
|
|
};
|
2006-02-16 16:25:03 +00:00
|
|
|
}
|