ink: fix build with gcc15

This commit is contained in:
Xiangyan Sun
2026-05-06 01:21:17 -07:00
parent f88215e151
commit 52e5e8c488
+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
];