summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-12-21 15:22:56 +0100
committerGitHub <noreply@github.com>2020-12-21 15:22:56 +0100
commit21bb0f56c5ad09272aaeb5c311e36ce6076ce647 (patch)
treec526edec8398452f08ddb8a282065896b83368ed
parent4454fecc85b0959d38fa6bef06521e597b7f75a5 (diff)
iproute2: 5.9.0 -> 5.10.0 (#107319)
-rw-r--r--pkgs/os-specific/linux/iproute/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/iproute/default.nix b/pkgs/os-specific/linux/iproute/default.nix
index b3de7ceedaad..291630032f00 100644
--- a/pkgs/os-specific/linux/iproute/default.nix
+++ b/pkgs/os-specific/linux/iproute/default.nix
@@ -5,19 +5,19 @@
stdenv.mkDerivation rec {
pname = "iproute2";
- version = "5.9.0";
+ version = "5.10.0";
src = fetchurl {
url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz";
- sha256 = "1kys6dmhrl43iaq95n5sh02p39d7bq8i5y672qrzgwnwpjaaqpd2";
+ sha256 = "15pfijbiyv0adrchj3v379w898gxsji33q4ly0k7s22vd93wj20m";
};
preConfigure = ''
# Don't try to create /var/lib/arpd:
sed -e '/ARPDDIR/d' -i Makefile
- # TODO: Drop temporary version fix for 5.9 once 5.10 is out:
+ # TODO: Drop temporary version fix once 5.11 is out (hopefully :D):
substituteInPlace include/version.h \
- --replace "5.8.0" "${version}"
+ --replace "5.9.0" "${version}"
'';
outputs = [ "out" "dev" ];