summary refs log tree commit diff
path: root/pkgs/tools/networking/xdp-tools
diff options
context:
space:
mode:
authorAdrian Pistol <vifino@tty.sh>2022-11-17 23:39:09 +0100
committerAdrian Pistol <vifino@tty.sh>2022-11-18 13:19:51 +0100
commit7f640597e6c42d5cf2ca6d9f239007095ca89a30 (patch)
tree46e573d7d0fccc9f97d0fb25ee9242f8d67a0def /pkgs/tools/networking/xdp-tools
parent4677c81b7635c35e45101b64e29456d96b556026 (diff)
xdp-tools: 1.2.6 -> 1.2.8
Diffstat (limited to 'pkgs/tools/networking/xdp-tools')
-rw-r--r--pkgs/tools/networking/xdp-tools/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/tools/networking/xdp-tools/default.nix b/pkgs/tools/networking/xdp-tools/default.nix
index 4861347e38fe7..e126cfc7a778f 100644
--- a/pkgs/tools/networking/xdp-tools/default.nix
+++ b/pkgs/tools/networking/xdp-tools/default.nix
@@ -15,25 +15,17 @@
 }:
 stdenv.mkDerivation rec {
   pname = "xdp-tools";
-  version = "1.2.6";
+  version = "1.2.8";
 
   src = fetchFromGitHub {
     owner = "xdp-project";
     repo = "xdp-tools";
     rev = "v${version}";
-    sha256 = "xKxR20Jz+pGKzazFoZe0i0pv7AuaxdL8Yt3IE4JAje8=";
+    sha256 = "7QYlC0YBQsXH2VxjgBbmTgEvp83lXloTLCHY2fTrZuQ=";
   };
 
   outputs = [ "out" "lib" ];
 
-  patches = [
-    (fetchpatch {
-      # Compat with libbpf 1.0: https://github.com/xdp-project/xdp-tools/pull/221
-      url = "https://github.com/xdp-project/xdp-tools/commit/f8592d0609807f5b2b73d27eb3bd623da4bd1997.diff";
-      sha256 = "+NpR0d5YE1TMFeyidBuXCDkcBTa2W0094nqYiEWKpY4=";
-    })
-  ];
-
   buildInputs = [
     libbpf
     elfutils
@@ -74,7 +66,7 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/xdp-project/xdp-tools";
     description = "Library and utilities for use with XDP";
     license = with licenses; [ gpl2 lgpl21 bsd2 ];
-    maintainers = with maintainers; [ tirex vcunat ];
+    maintainers = with maintainers; [ tirex vcunat vifino ];
     platforms = platforms.linux;
   };
 }