2018-07-20 17:44:44 -07:00
|
|
|
{ fetchurl, stdenv, config, flex, bash, bison, db, iptables, pkgconfig }:
|
2006-02-16 08:25:03 -08:00
|
|
|
|
2009-07-23 14:34:53 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2016-09-25 06:07:03 -07:00
|
|
|
name = "iproute2-${version}";
|
2018-06-14 05:44:46 -07:00
|
|
|
version = "4.17.0";
|
2007-06-20 06:01:59 -07:00
|
|
|
|
2015-02-06 12:51:53 -08:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
|
2018-06-14 05:44:46 -07:00
|
|
|
sha256 = "0vmynikcamfhakvwyk5dsffy0ymgi5mdqiwybdvqfn1ijaq93abg";
|
2006-02-16 08:25:03 -08:00
|
|
|
};
|
2011-02-24 04:04:00 -08:00
|
|
|
|
2014-10-19 15:50:48 -07:00
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs ./configure
|
|
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
2018-01-14 17:07:06 -08:00
|
|
|
# Don't build netem tools--they're not installed and require HOSTCC
|
|
|
|
substituteInPlace Makefile --replace " netem " " "
|
2014-10-19 15:50:48 -07:00
|
|
|
'';
|
2012-10-11 12:38:54 -07:00
|
|
|
|
2014-10-19 15:50:48 -07:00
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR="
|
|
|
|
"LIBDIR=$(out)/lib"
|
|
|
|
"SBINDIR=$(out)/sbin"
|
|
|
|
"MANDIR=$(out)/share/man"
|
2016-09-27 08:49:03 -07:00
|
|
|
"BASH_COMPDIR=$(out)/share/bash-completion/completions"
|
2015-07-27 09:24:49 -07:00
|
|
|
"DOCDIR=$(TMPDIR)/share/doc/${name}" # Don't install docs
|
2017-06-19 18:42:51 -07:00
|
|
|
"HDRDIR=$(TMPDIR)/include/iproute2" # Don't install headers
|
2014-10-19 15:50:48 -07:00
|
|
|
];
|
2012-10-11 12:38:54 -07:00
|
|
|
|
2018-05-11 01:42:37 -07:00
|
|
|
# enable iproute2 module if you want this folder to be created
|
2015-07-27 09:24:33 -07:00
|
|
|
buildFlags = [
|
2018-05-11 01:42:37 -07:00
|
|
|
"CONFDIR=${config.iproute2.confDir or "/run/iproute2"}"
|
2015-07-27 09:24:33 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
installFlags = [
|
2015-07-28 02:44:18 -07:00
|
|
|
"CONFDIR=$(out)/etc/iproute2"
|
2015-07-27 09:24:33 -07:00
|
|
|
];
|
|
|
|
|
2014-01-31 12:05:37 -08:00
|
|
|
buildInputs = [ db iptables ];
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ bison flex pkgconfig ];
|
2012-10-11 12:38:54 -07:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-01-03 07:13:19 -08:00
|
|
|
|
2018-01-14 17:07:06 -08:00
|
|
|
postInstall = ''
|
2018-02-13 11:55:43 -08:00
|
|
|
PATH=${bash}/bin:$PATH patchShebangs $out/sbin
|
2018-01-14 17:07:06 -08:00
|
|
|
'';
|
|
|
|
|
2014-10-19 15:50:48 -07:00
|
|
|
meta = with stdenv.lib; {
|
2017-06-19 18:42:51 -07:00
|
|
|
homepage = https://wiki.linuxfoundation.org/networking/iproute2;
|
2012-10-11 12:38:54 -07:00
|
|
|
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
|
2014-10-19 15:50:48 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2017-06-19 18:42:51 -07:00
|
|
|
maintainers = with maintainers; [ eelco wkennington fpletz ];
|
2010-08-13 16:09:53 -07:00
|
|
|
};
|
2006-02-16 08:25:03 -08:00
|
|
|
}
|