58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ fetchurl, stdenv, lib, flex, bison, db, iptables, pkgconfig
|
|
, enableFan ? false
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "iproute2-${version}";
|
|
version = "4.12.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
|
|
sha256 = "0zdxdsxyaazl85xhwskvsmpyzwf5qp21cvjsi1lw3xnrc914q2if";
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
preConfigure = ''
|
|
patchShebangs ./configure
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
|
'';
|
|
|
|
makeFlags = [
|
|
"DESTDIR="
|
|
"LIBDIR=$(out)/lib"
|
|
"SBINDIR=$(out)/sbin"
|
|
"MANDIR=$(out)/share/man"
|
|
"BASH_COMPDIR=$(out)/share/bash-completion/completions"
|
|
"DOCDIR=$(TMPDIR)/share/doc/${name}" # Don't install docs
|
|
"HDRDIR=$(TMPDIR)/include/iproute2" # Don't install headers
|
|
];
|
|
|
|
buildFlags = [
|
|
"CONFDIR=/etc/iproute2"
|
|
];
|
|
|
|
installFlags = [
|
|
"CONFDIR=$(out)/etc/iproute2"
|
|
];
|
|
|
|
buildInputs = [ db iptables ];
|
|
nativeBuildInputs = [ bison flex pkgconfig ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://wiki.linuxfoundation.org/networking/iproute2;
|
|
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ eelco wkennington fpletz ];
|
|
};
|
|
}
|