about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-06-02 13:54:36 +0200
committerGitHub <noreply@github.com>2024-06-02 13:54:36 +0200
commitd6f3117be920a6f19fad44778ba2a36e99eac077 (patch)
treeb8d53f58505a3d2779f077aa19f9009e46b1192e /pkgs
parent93b788f68fea9d32f8ff1adcb04fd3cee7133c77 (diff)
parent8af4bfe3620098cc2789b70d3d09b729c2cd69c2 (diff)
Merge pull request #311749 from trofi/iproute2-update
iproute2: 6.8.0 -> 6.9.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/iproute/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/pkgs/os-specific/linux/iproute/default.nix b/pkgs/os-specific/linux/iproute/default.nix
index 597989c5a0641..6422583493cea 100644
--- a/pkgs/os-specific/linux/iproute/default.nix
+++ b/pkgs/os-specific/linux/iproute/default.nix
@@ -6,17 +6,14 @@
 
 stdenv.mkDerivation rec {
   pname = "iproute2";
-  version = "6.8.0";
+  version = "6.9.0";
 
   src = fetchurl {
     url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz";
-    hash = "sha256-A6bMo9cakI0fFfe0lb4rj+hR+UFFjcRmSQDX9F/PaM4=";
+    hash = "sha256-L2Q9CeoRpKKgQ8kuK0abX3MijL8kGugGdgKW7Q7EE9A=";
   };
 
   postPatch = ''
-    # Don't try to create /var/lib/arpd:
-    sed -e '/ARPDDIR/d' -i Makefile
-
     substituteInPlace Makefile \
       --replace "CC := gcc" "CC ?= $CC"
   '';