nixpkgs/pkgs/os-specific/linux/iproute/default.nix

57 lines
1.5 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, lib, flex, bison, db, iptables, pkgconfig
, enableFan ? false
}:
stdenv.mkDerivation rec {
name = "iproute2-${version}";
2016-12-29 01:52:26 +00:00
version = "4.9.0";
2015-02-06 20:51:53 +00:00
src = fetchurl {
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
2016-12-29 01:52:26 +00:00
sha256 = "1i0n071hiqxw1gisngw2jln3kcp9sh47n6fj5hdwqrvp7w20zwy0";
};
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
];
2014-10-19 22:50:48 +00:00
preConfigure = ''
patchShebangs ./configure
sed -e '/ARPDDIR/d' -i Makefile
'';
2012-10-11 19:38:54 +00:00
2014-10-19 22:50:48 +00:00
makeFlags = [
"DESTDIR="
"LIBDIR=$(out)/lib"
"SBINDIR=$(out)/sbin"
"MANDIR=$(out)/share/man"
"BASH_COMPDIR=$(out)/share/bash-completion/completions"
2015-07-27 16:24:49 +00:00
"DOCDIR=$(TMPDIR)/share/doc/${name}" # Don't install docs
2014-10-19 22:50:48 +00:00
];
2012-10-11 19:38:54 +00:00
buildFlags = [
"CONFDIR=/etc/iproute2"
];
installFlags = [
"CONFDIR=$(out)/etc/iproute2"
];
buildInputs = [ db iptables ];
nativeBuildInputs = [ bison flex pkgconfig ];
2012-10-11 19:38:54 +00:00
enableParallelBuilding = true;
2014-10-19 22:50:48 +00:00
meta = with stdenv.lib; {
2012-10-11 19:38:54 +00: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 22:50:48 +00:00
platforms = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ eelco wkennington ];
};
}