iproute: 5.7.0 -> 5.8.0 (#94965)

"The former date based internal versioning (snapshot) is replaced by the
regular version numbering which corresponds to the kernel version." [0]

File changes (additions/removals):
+share/man/man8/ip-mptcp.8.gz
+share/man/man8/tc-gate.8.gz

[0]: https://marc.info/?l=linux-netdev&m=159681449423365

authored by

Michael Weiss and committed by
GitHub
83c54108 924ea649

+5 -2
+5 -2
pkgs/os-specific/linux/iproute/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "iproute2"; 8 - version = "5.7.0"; 8 + version = "5.8.0"; 9 9 10 10 src = fetchurl { 11 11 url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz"; 12 - sha256 = "088gs56iqhdlpw1iqjwrss4zxd4zbl2wl8s2implrrdajjxcfpbj"; 12 + sha256 = "0vk4vickrpahdhl3zazr2qn2bf99v5549ncirjpwiy4h0a4izkfg"; 13 13 }; 14 14 15 15 preConfigure = '' 16 16 # Don't try to create /var/lib/arpd: 17 17 sed -e '/ARPDDIR/d' -i Makefile 18 + # TODO: Drop temporary version fix for 5.8 (53159d81) once 5.9 is out: 19 + substituteInPlace include/version.h \ 20 + --replace "v5.7.0-77-gb687d1067169" "5.8.0" 18 21 ''; 19 22 20 23 outputs = [ "out" "dev" ];