2018-09-01 19:28:23 +01:00
|
|
|
{ fetchurl, stdenv, flex, bash, bison, db, iptables, pkgconfig, libelf }:
|
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";
|
2019-10-03 20:09:00 +01:00
|
|
|
version = "5.3.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";
|
2019-10-03 20:09:00 +01:00
|
|
|
sha256 = "0gvv269wjn4279hxr5zzwsk2c5qgswr47za3hm1x4frsk52iw76b";
|
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 = ''
|
|
|
|
patchShebangs ./configure
|
|
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
2018-01-15 01:07:06 +00:00
|
|
|
# Don't build netem tools--they're not installed and require HOSTCC
|
|
|
|
substituteInPlace Makefile --replace " netem " " "
|
2014-10-19 23:50:48 +01:00
|
|
|
'';
|
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 = [
|
|
|
|
"DESTDIR="
|
|
|
|
"LIBDIR=$(out)/lib"
|
|
|
|
"SBINDIR=$(out)/sbin"
|
|
|
|
"MANDIR=$(out)/share/man"
|
2016-09-27 16:49:03 +01:00
|
|
|
"BASH_COMPDIR=$(out)/share/bash-completion/completions"
|
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
|
|
|
];
|
|
|
|
|
2018-08-07 22:01:07 +01:00
|
|
|
buildInputs = [ db iptables libelf ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ bison flex pkgconfig ];
|
2012-10-11 20:38:54 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-01-03 15:13:19 +00:00
|
|
|
|
2018-01-15 01:07:06 +00:00
|
|
|
postInstall = ''
|
2018-02-13 19:55:43 +00:00
|
|
|
PATH=${bash}/bin:$PATH patchShebangs $out/sbin
|
2018-01-15 01:07:06 +00:00
|
|
|
'';
|
|
|
|
|
2014-10-19 23:50:48 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-06-20 02:42:51 +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
|
|
|
}
|