ink: fix build with gcc15 (#517223)

This commit is contained in:
yaya
2026-05-06 09:45:33 +00:00
committed by GitHub
+11
View File
@@ -2,6 +2,7 @@
lib,
stdenv,
fetchurl,
fetchDebianPatch,
libinklevel,
}:
@@ -14,6 +15,16 @@ stdenv.mkDerivation (finalAttrs: {
sha256 = "1fk0b8vic04a3i3vmq73hbk7mzbi57s8ks6ighn3mvr6m2v8yc9d";
};
patches = [
(fetchDebianPatch {
pname = "ink";
version = "0.5.3";
debianRevision = "7";
patch = "gcc15.patch";
hash = "sha256-2Qn8jDAY/ub8MEiG68J7nEnz9GQ/8ScF9nweTkuCibQ=";
})
];
buildInputs = [
libinklevel
];