summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iproute
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2017-06-20 03:42:51 +0200
committerFranz Pletz <fpletz@fnordicwalking.de>2017-06-20 03:56:43 +0200
commit03d1e8a14ec29388f6a50c2900c7d4f48c491214 (patch)
tree9eea95854bc0e5a98b5e477d0726dee1cf880754 /pkgs/os-specific/linux/iproute
parentb0b918224164e5ae3975892d57bb5ec018eb868c (diff)
downloadnixlib-03d1e8a14ec29388f6a50c2900c7d4f48c491214.tar
nixlib-03d1e8a14ec29388f6a50c2900c7d4f48c491214.tar.gz
nixlib-03d1e8a14ec29388f6a50c2900c7d4f48c491214.tar.bz2
nixlib-03d1e8a14ec29388f6a50c2900c7d4f48c491214.tar.lz
nixlib-03d1e8a14ec29388f6a50c2900c7d4f48c491214.tar.xz
nixlib-03d1e8a14ec29388f6a50c2900c7d4f48c491214.tar.zst
nixlib-03d1e8a14ec29388f6a50c2900c7d4f48c491214.zip
iproute: 4.9.0 -> 4.11.0
Diffstat (limited to 'pkgs/os-specific/linux/iproute')
-rw-r--r--pkgs/os-specific/linux/iproute/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/iproute/default.nix b/pkgs/os-specific/linux/iproute/default.nix
index 1ff68fc04080..4ffc99b6ced3 100644
--- a/pkgs/os-specific/linux/iproute/default.nix
+++ b/pkgs/os-specific/linux/iproute/default.nix
@@ -4,11 +4,11 @@
 
 stdenv.mkDerivation rec {
   name = "iproute2-${version}";
-  version = "4.9.0";
+  version = "4.11.0";
 
   src = fetchurl {
     url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
-    sha256 = "1i0n071hiqxw1gisngw2jln3kcp9sh47n6fj5hdwqrvp7w20zwy0";
+    sha256 = "09l0phf09mw17bn3xlzfr80sbhw14mq8xv28iz5x15m6pll10rvj";
   };
 
   patches = lib.optionals enableFan [
@@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
     "MANDIR=$(out)/share/man"
     "BASH_COMPDIR=$(out)/share/bash-completion/completions"
     "DOCDIR=$(TMPDIR)/share/doc/${name}" # Don't install docs
+    "HDRDIR=$(TMPDIR)/include/iproute2" # Don't install headers
   ];
 
   buildFlags = [
@@ -47,10 +48,10 @@ stdenv.mkDerivation rec {
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {
-    homepage = http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2;
+    homepage = https://wiki.linuxfoundation.org/networking/iproute2;
     description = "A collection of utilities for controlling TCP/IP networking and traffic control in Linux";
     platforms = platforms.linux;
     license = licenses.gpl2;
-    maintainers = with maintainers; [ eelco wkennington ];
+    maintainers = with maintainers; [ eelco wkennington fpletz ];
   };
 }