0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

xdp-tools: 1.5.2 -> 1.5.5 (#410071)

This commit is contained in:
Vladimír Čunát 2025-05-29 08:33:13 +02:00
commit a57c628caf
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA
2 changed files with 2 additions and 22 deletions

View file

@ -1,13 +0,0 @@
diff --git a/configure b/configure
index 271c370..33aabfa 100755
--- a/configure
+++ b/configure
@@ -97,7 +97,7 @@ check_toolchain()
EMACS=""
else
emacs_version=$($EMACS --version 2>/dev/null | head -n 1)
- if echo $emacs_version | grep -Eq 'GNU Emacs 2[6789]'; then
+ if echo $emacs_version | grep -Eq 'GNU Emacs (2[6789]|30)'; then
echo "using emacs: $emacs_version"
else
echo "not using emacs: $emacs_version"

View file

@ -16,22 +16,15 @@
}:
stdenv.mkDerivation rec {
pname = "xdp-tools";
version = "1.5.2";
version = "1.5.5";
src = fetchFromGitHub {
owner = "xdp-project";
repo = "xdp-tools";
rev = "v${version}";
hash = "sha256-NJawacCrmTuRXsOiAOMD8RaljPnuPFISoWEgiDcInw8=";
hash = "sha256-dK+ZpD1wv20iU51dsMUiW/Z9jojuwC8P3rrjU3LEB1Y=";
};
patches = [
# Allow building with emacs 30
# Submitted upstream: https://github.com/xdp-project/xdp-tools/pull/484
# FIXME: remove when merged
./emacs-30.patch
];
outputs = [
"out"
"lib"