From 7f640597e6c42d5cf2ca6d9f239007095ca89a30 Mon Sep 17 00:00:00 2001 From: Adrian Pistol Date: Thu, 17 Nov 2022 23:39:09 +0100 Subject: [PATCH] xdp-tools: 1.2.6 -> 1.2.8 --- pkgs/tools/networking/xdp-tools/default.nix | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/networking/xdp-tools/default.nix b/pkgs/tools/networking/xdp-tools/default.nix index 4861347e38fe..e126cfc7a778 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; }; }