2012-10-11 21:38:54 +02:00
|
|
|
{ fetchurl, stdenv, flex, bison, db4, iptables, pkgconfig }:
|
2006-02-16 17:25:03 +01:00
|
|
|
|
2009-07-23 23:34:53 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-10-11 21:38:54 +02:00
|
|
|
name = "iproute2-3.6.0";
|
2007-06-20 15:01:59 +02:00
|
|
|
|
2009-01-03 16:13:19 +01:00
|
|
|
src = fetchurl {
|
2012-10-11 21:38:54 +02:00
|
|
|
url = http://kernel.org/pub/linux/utils/net/iproute2/iproute2-3.6.0.tar.xz;
|
|
|
|
sha256 = "0d05av2s7p552yszgj6glz6d74jlmg392s7n74hicgqfl16m85rd";
|
2006-02-16 17:25:03 +01:00
|
|
|
};
|
2011-02-24 13:04:00 +01:00
|
|
|
|
|
|
|
patches = [ ./vpnc.patch ];
|
|
|
|
|
2009-07-23 23:34:53 +02:00
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
patchShebangs ./configure
|
2010-08-14 01:11:11 +02:00
|
|
|
sed -e '/ARPDDIR/d' -i Makefile
|
2009-07-23 23:34:53 +02:00
|
|
|
'';
|
2012-10-11 21:38:54 +02:00
|
|
|
|
2010-08-14 01:11:11 +02:00
|
|
|
postConfigure = "cat Config";
|
2006-02-16 17:25:03 +01:00
|
|
|
|
2010-08-14 01:11:11 +02:00
|
|
|
makeFlags = "DESTDIR= LIBDIR=$(out)/lib SBINDIR=$(out)/sbin"
|
2012-10-11 21:38:54 +02:00
|
|
|
+ " CONFDIR=$(out)/etc DOCDIR=$(out)/share/doc/${name}"
|
|
|
|
+ " MANDIR=$(out)/share/man";
|
|
|
|
|
|
|
|
buildInputs = [ db4 iptables ];
|
|
|
|
buildNativeInputs = [ bison flex pkgconfig ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2009-01-03 16:13:19 +01:00
|
|
|
|
2012-10-11 21:38:54 +02:00
|
|
|
# Get rid of useless TeX/SGML docs.
|
|
|
|
postInstall = "rm -rf $out/share/doc";
|
2010-08-14 01:09:53 +02:00
|
|
|
|
|
|
|
meta = {
|
2012-10-11 21:38:54 +02: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";
|
2010-08-14 01:11:11 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-10-11 21:38:54 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2010-08-14 01:09:53 +02:00
|
|
|
};
|
2006-02-16 17:25:03 +01:00
|
|
|
}
|