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

41 lines
1.1 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, flex, bison, db, iptables, pkgconfig }:
stdenv.mkDerivation rec {
2014-09-23 10:07:29 +00:00
name = "iproute2-3.16.0";
src = fetchurl {
2013-03-26 14:31:41 +00:00
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
2014-09-23 10:07:29 +00:00
sha256 = "0ybv29m88lccpfrh2dgiqash4c3gfvwwpx9kakvnc8c71rn8l2hz";
};
patch = [
./vpnc.patch
./device-checking.patch # Remove after 3.16.0
];
preConfigure =
''
patchShebangs ./configure
sed -e '/ARPDDIR/d' -i Makefile
'';
2012-10-11 19:38:54 +00:00
makeFlags = "DESTDIR= LIBDIR=$(out)/lib SBINDIR=$(out)/sbin"
2012-10-11 19:38:54 +00:00
+ " CONFDIR=$(out)/etc DOCDIR=$(out)/share/doc/${name}"
+ " MANDIR=$(out)/share/man";
buildInputs = [ db iptables ];
nativeBuildInputs = [ bison flex pkgconfig ];
2012-10-11 19:38:54 +00:00
enableParallelBuilding = true;
2012-10-11 19:38:54 +00:00
# Get rid of useless TeX/SGML docs.
postInstall = "rm -rf $out/share/doc";
meta = {
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";
platforms = stdenv.lib.platforms.linux;
2012-10-11 19:38:54 +00:00
maintainers = [ stdenv.lib.maintainers.eelco ];
};
}