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

44 lines
1.2 KiB
Nix
Raw Normal View History

2014-10-19 22:50:48 +00:00
{ fetchgit, stdenv, flex, bison, db, iptables, pkgconfig }:
stdenv.mkDerivation rec {
2014-10-19 22:50:48 +00:00
name = "iproute2-3.17.0";
2014-10-19 22:50:48 +00:00
src = fetchgit {
url = "git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git";
rev = "refs/tags/v3.17.0";
sha256 = "113ayyy7cjxn0bf67fh4is4z0jysgif016kv7ig0jp6r68xp2spa";
};
2014-10-19 22:50:48 +00:00
patch = [ ./vpnc.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"
"CONFDIR=$(out)/etc"
"DOCDIR=$(out)/share/doc/${name}"
"MANDIR=$(out)/share/man"
];
2012-10-11 19:38:54 +00:00
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";
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 ];
};
}