2015-08-10 00:13:40 +01:00
|
|
|
{ fetchurl, stdenv, lib, flex, bison, db, iptables, pkgconfig
|
|
|
|
, enableFan ? false
|
|
|
|
}:
|
2006-02-16 16:25:03 +00:00
|
|
|
|
2009-07-23 22:34:53 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-05-06 02:09:47 +01:00
|
|
|
name = "iproute2-4.5.0";
|
2007-06-20 14:01:59 +01:00
|
|
|
|
2015-02-06 20:51:53 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
|
2016-05-06 02:09:47 +01:00
|
|
|
sha256 = "0jj9phsi8m2sbnz7bbh9cf9vckm67hs62ab5srdwnrg4acpjj59z";
|
2006-02-16 16:25:03 +00:00
|
|
|
};
|
2011-02-24 12:04:00 +00:00
|
|
|
|
2016-04-10 00:36:02 +01:00
|
|
|
patches = lib.optionals enableFan [
|
|
|
|
# These patches were pulled from:
|
|
|
|
# https://launchpad.net/ubuntu/xenial/+source/iproute2
|
|
|
|
./1000-ubuntu-poc-fan-driver.patch
|
|
|
|
./1001-ubuntu-poc-fan-driver-v3.patch
|
|
|
|
./1002-ubuntu-poc-fan-driver-vxlan.patch
|
|
|
|
];
|
2015-08-10 00:13:40 +01:00
|
|
|
|
2014-10-19 23:50:48 +01:00
|
|
|
preConfigure = ''
|
|
|
|
patchShebangs ./configure
|
|
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
|
|
|
'';
|
2012-10-11 20:38:54 +01:00
|
|
|
|
2014-10-19 23:50:48 +01:00
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR="
|
|
|
|
"LIBDIR=$(out)/lib"
|
|
|
|
"SBINDIR=$(out)/sbin"
|
|
|
|
"MANDIR=$(out)/share/man"
|
2015-07-27 17:24:49 +01:00
|
|
|
"DOCDIR=$(TMPDIR)/share/doc/${name}" # Don't install docs
|
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 = [
|
2015-07-28 10:44:18 +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
|
|
|
];
|
|
|
|
|
2014-01-31 20:05:37 +00:00
|
|
|
buildInputs = [ db iptables ];
|
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
|
|
|
|
2014-10-19 23:50:48 +01:00
|
|
|
meta = with stdenv.lib; {
|
2012-10-11 20:38:54 +01:00
|
|
|
homepage = http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2;
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ eelco wkennington ];
|
2010-08-14 00:09:53 +01:00
|
|
|
};
|
2006-02-16 16:25:03 +00:00
|
|
|
}
|