2014-10-19 22:50:48 +00:00
|
|
|
{ fetchgit, stdenv, flex, bison, db, iptables, pkgconfig }:
|
2006-02-16 16:25:03 +00:00
|
|
|
|
2009-07-23 21:34:53 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-19 22:50:48 +00:00
|
|
|
name = "iproute2-3.17.0";
|
2007-06-20 13:01:59 +00:00
|
|
|
|
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";
|
2006-02-16 16:25:03 +00:00
|
|
|
};
|
2011-02-24 12:04:00 +00:00
|
|
|
|
2014-10-19 22:50:48 +00:00
|
|
|
patch = [ ./vpnc.patch ];
|
2011-02-24 12:04:00 +00:00
|
|
|
|
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
|
|
|
|
2014-01-31 20:05:37 +00:00
|
|
|
buildInputs = [ db iptables ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ bison flex pkgconfig ];
|
2012-10-11 19:38:54 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-01-03 15:13:19 +00:00
|
|
|
|
2012-10-11 19:38:54 +00:00
|
|
|
# Get rid of useless TeX/SGML docs.
|
|
|
|
postInstall = "rm -rf $out/share/doc";
|
2010-08-13 23:09:53 +00:00
|
|
|
|
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 ];
|
2010-08-13 23:09:53 +00:00
|
|
|
};
|
2006-02-16 16:25:03 +00:00
|
|
|
}
|