2023-09-11 10:35:04 +00:00
|
|
|
{ lib, stdenv, fetchurl
|
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-09-11 10:35:04 +00:00
|
|
|
version = "6.5.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-09-11 10:35:04 +00:00
|
|
|
hash = "sha256-pwF5CF+huW08M7BAyAm3XitXVjrcUFpK0F4mCd83NGM=";
|
2006-02-16 16:25:03 +00:00
|
|
|
};
|
2011-02-24 12:04:00 +00:00
|
|
|
|
2023-09-01 03:25:51 +00:00
|
|
|
postPatch = ''
|
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
|
2023-09-01 03:25:51 +00:00
|
|
|
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "CC := gcc" "CC ?= $CC"
|
2014-10-19 22:50:48 +00:00
|
|
|
'';
|
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"
|
2023-03-05 15:27:38 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isStatic [
|
|
|
|
"SHARED_LIBS=n"
|
|
|
|
# all build .so plugins:
|
|
|
|
"TC_CONFIG_NO_XT=y"
|
2023-09-11 22:34:57 +00:00
|
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
|
|
"HOSTCC=$(CC_FOR_BUILD)"
|
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
|
|
|
}
|