Merge #201688: xdp-tools: 1.2.6 -> 1.2.8

This commit is contained in:
Vladimír Čunát 2022-11-18 14:51:40 +01:00
commit d05f573b6c
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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;
};
}