diff options
| author | Fabián Heredia Montiel <303897+fabianhjr@users.noreply.github.com> | 2023-09-30 12:35:50 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-30 12:35:50 -0600 |
| commit | 78face1bd7f2283a1a59efa202c81676e70d2c6e (patch) | |
| tree | b9d94a09cc0ec371a6a8dd493f08293e1f4ecbfb | |
| parent | coredns: 1.11.0 -> 1.11.1 (diff) | |
| parent | xdp-tools: 1.3.1 -> 1.4.0 (diff) | |
| download | nixpkgs-78face1bd7f2283a1a59efa202c81676e70d2c6e.tar.gz | |
Merge pull request #258014 from vcunat/p/libxdp-bump
xdp-tools: 1.3.1 -> 1.4.0
| -rw-r--r-- | pkgs/tools/networking/xdp-tools/default.nix | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/tools/networking/xdp-tools/default.nix b/pkgs/tools/networking/xdp-tools/default.nix index b14dd819e434..d3eb90f258ba 100644 --- a/pkgs/tools/networking/xdp-tools/default.nix +++ b/pkgs/tools/networking/xdp-tools/default.nix @@ -1,7 +1,6 @@ { lib , stdenv , fetchFromGitHub -, fetchpatch , libbpf , elfutils , zlib @@ -16,23 +15,15 @@ }: stdenv.mkDerivation rec { pname = "xdp-tools"; - version = "1.3.1"; + version = "1.4.0"; src = fetchFromGitHub { owner = "xdp-project"; repo = "xdp-tools"; rev = "v${version}"; - sha256 = "ctggXzc3qA+m2/nJ9lmR/pERj0YyPko3MTttm8e85cU="; + hash = "sha256-XZGbfXQM3catiDavzi2vY5s+EMVgGHq/ju32lBIgg8E="; }; - patches = [ - # Fix function detection for btf__type_cnt() - (fetchpatch { - url = "https://github.com/xdp-project/xdp-tools/commit/a7df567634af77381832a2212c5f5099b07734f3.patch"; - sha256 = "n6qG/bojSGUowrAaJWxecYpWdv9OceHkoaGlhbl81hA="; - }) - ]; - outputs = [ "out" "lib" ]; buildInputs = [ |
