summary refs log tree commit diff
path: root/pkgs/os-specific/linux/iproute
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-03-22 14:07:17 -0500
committerWill Dietz <w@wdtz.org>2019-03-22 14:09:58 -0500
commit29fde98ed35cc5f16d5aafc141674f6c627e4c7c (patch)
tree2ec244a95f1d4344bcedab8a6d41d5aeb13e291d /pkgs/os-specific/linux/iproute
parentea34ad0e4307af7acda9078ed5795bec45f7cb84 (diff)
downloadnixpkgs-29fde98ed35cc5f16d5aafc141674f6c627e4c7c.tar
nixpkgs-29fde98ed35cc5f16d5aafc141674f6c627e4c7c.tar.gz
nixpkgs-29fde98ed35cc5f16d5aafc141674f6c627e4c7c.tar.bz2
nixpkgs-29fde98ed35cc5f16d5aafc141674f6c627e4c7c.tar.lz
nixpkgs-29fde98ed35cc5f16d5aafc141674f6c627e4c7c.tar.xz
nixpkgs-29fde98ed35cc5f16d5aafc141674f6c627e4c7c.tar.zst
nixpkgs-29fde98ed35cc5f16d5aafc141674f6c627e4c7c.zip
iproute2: 4.20.0 -> 5.0.0
Diffstat (limited to 'pkgs/os-specific/linux/iproute')
-rw-r--r--pkgs/os-specific/linux/iproute/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/iproute/default.nix b/pkgs/os-specific/linux/iproute/default.nix
index 4d8591a845c..87f27a2db07 100644
--- a/pkgs/os-specific/linux/iproute/default.nix
+++ b/pkgs/os-specific/linux/iproute/default.nix
@@ -1,12 +1,12 @@
 { fetchurl, stdenv, flex, bash, bison, db, iptables, pkgconfig, libelf }:
 
 stdenv.mkDerivation rec {
-  name = "iproute2-${version}";
-  version = "4.20.0";
+  pname = "iproute2";
+  version = "5.0.0";
 
   src = fetchurl {
-    url = "mirror://kernel/linux/utils/net/iproute2/${name}.tar.xz";
-    sha256 = "1a7xyvqjxfnm7rk21amm0xgxa38clg7q7cmc4dmlg27q81mambf8";
+    url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz";
+    sha256 = "1fi03lb8dqr8hq633gcqsf6228vsvysxms075j1yyl4nlc17616z";
   };
 
   preConfigure = ''
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     "SBINDIR=$(out)/sbin"
     "MANDIR=$(out)/share/man"
     "BASH_COMPDIR=$(out)/share/bash-completion/completions"
-    "DOCDIR=$(TMPDIR)/share/doc/${name}" # Don't install docs
+    "DOCDIR=$(TMPDIR)/share/doc/${pname}" # Don't install docs
     "HDRDIR=$(dev)/include/iproute2"
   ];