iproute2: 3.16.0 -> 3.17.0

This commit is contained in:
William A. Kennington III 2014-10-19 15:50:48 -07:00
parent 29ffeecf78
commit 664909d31b

View file

@ -1,28 +1,30 @@
{ fetchurl, stdenv, flex, bison, db, iptables, pkgconfig }: { fetchgit, stdenv, flex, bison, db, iptables, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "iproute2-3.16.0"; name = "iproute2-3.17.0";
src = fetchurl { src = fetchgit {
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz"; url = "git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git";
sha256 = "0ybv29m88lccpfrh2dgiqash4c3gfvwwpx9kakvnc8c71rn8l2hz"; rev = "refs/tags/v3.17.0";
sha256 = "113ayyy7cjxn0bf67fh4is4z0jysgif016kv7ig0jp6r68xp2spa";
}; };
patch = [ patch = [ ./vpnc.patch ];
./vpnc.patch
./device-checking.patch # Remove after 3.16.0 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"
]; ];
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 ]; buildInputs = [ db iptables ];
nativeBuildInputs = [ bison flex pkgconfig ]; nativeBuildInputs = [ bison flex pkgconfig ];
@ -31,10 +33,11 @@ stdenv.mkDerivation rec {
# Get rid of useless TeX/SGML docs. # Get rid of useless TeX/SGML docs.
postInstall = "rm -rf $out/share/doc"; postInstall = "rm -rf $out/share/doc";
meta = { meta = with stdenv.lib; {
homepage = http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2; homepage = http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2;
description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux"; description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = [ stdenv.lib.maintainers.eelco ]; license = licenses.gpl2;
maintainers = with maintainers; [ eelco wkennington ];
}; };
} }