nixpkgs/pkgs/os-specific/linux/iproute/default.nix
William A. Kennington III bc4347bfd7 iproute: 3.19.0 -> 4.0.0
2015-04-30 18:51:27 -07:00

43 lines
1.1 KiB
Nix

{ fetchurl, stdenv, flex, bison, db, iptables, pkgconfig }:
stdenv.mkDerivation rec {
name = "iproute2-4.0.0";
src = fetchurl {
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
sha256 = "0616cg6liyysfddf6d8i4vyndd9b0hjmfw35icq8p18b0nqnxl2w";
};
patch = [ ./vpnc.patch ];
preConfigure = ''
patchShebangs ./configure
sed -e '/ARPDDIR/d' -i Makefile
'';
makeFlags = [
"DESTDIR="
"LIBDIR=$(out)/lib"
"SBINDIR=$(out)/sbin"
"CONFDIR=$(out)/etc"
"DOCDIR=$(out)/share/doc/${name}"
"MANDIR=$(out)/share/man"
];
buildInputs = [ db iptables ];
nativeBuildInputs = [ bison flex pkgconfig ];
enableParallelBuilding = true;
# Get rid of useless TeX/SGML docs.
postInstall = "rm -rf $out/share/doc";
meta = with stdenv.lib; {
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 = platforms.linux;
license = licenses.gpl2;
maintainers = with maintainers; [ eelco wkennington ];
};
}