mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
iproute2: 3.16.0 -> 3.17.0
This commit is contained in:
parent
29ffeecf78
commit
664909d31b
1 changed files with 24 additions and 21 deletions
|
@ -1,28 +1,30 @@
|
|||
{ fetchurl, stdenv, flex, bison, db, iptables, pkgconfig }:
|
||||
{ fetchgit, stdenv, flex, bison, db, iptables, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "iproute2-3.16.0";
|
||||
name = "iproute2-3.17.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
|
||||
sha256 = "0ybv29m88lccpfrh2dgiqash4c3gfvwwpx9kakvnc8c71rn8l2hz";
|
||||
src = fetchgit {
|
||||
url = "git://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git";
|
||||
rev = "refs/tags/v3.17.0";
|
||||
sha256 = "113ayyy7cjxn0bf67fh4is4z0jysgif016kv7ig0jp6r68xp2spa";
|
||||
};
|
||||
|
||||
patch = [
|
||||
./vpnc.patch
|
||||
./device-checking.patch # Remove after 3.16.0
|
||||
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"
|
||||
];
|
||||
|
||||
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 ];
|
||||
|
||||
|
@ -31,10 +33,11 @@ stdenv.mkDerivation rec {
|
|||
# Get rid of useless TeX/SGML docs.
|
||||
postInstall = "rm -rf $out/share/doc";
|
||||
|
||||
meta = {
|
||||
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 = stdenv.lib.platforms.linux;
|
||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ eelco wkennington ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue