nip2: fix build with gcc 15

This commit is contained in:
Harinn
2026-05-06 13:53:41 +07:00
parent a2d5cbaaef
commit 16ecf31959
+14
View File
@@ -2,6 +2,7 @@
lib,
stdenv,
fetchurl,
fetchpatch,
pkg-config,
glib,
libxml2,
@@ -25,6 +26,19 @@ stdenv.mkDerivation (finalAttrs: {
sha256 = "sha256-t14m6z+5lPqpiOjgdDbKwqSWXCyrCL7zlo6BeoZtds0=";
};
patches = [
(fetchpatch {
name = "do-not-redeclare-statfs.patch";
url = "https://github.com/libvips/nip2/commit/045268a78c40d7f546220504f971c728aebc00be.patch";
hash = "sha256-A17+/Vmjf0l1Jpl22VL11gj5m6oFB8DnvkH2EHiRTw8=";
})
(fetchpatch {
name = "declare-function-arguments-for-function-pointer.patch";
url = "https://github.com/libvips/nip2/commit/8c60c517b59f806da84d57cb1d083a213b811151.patch";
hash = "sha256-o5OHNSbUORGquhyCYCtGQTY74IfroByaa0UAXYsP484=";
})
];
nativeBuildInputs = [
bison
flex