[staging-next] c-blosc: fix build with gcc15 on aarch64-linux (#474382)

This commit is contained in:
Aleksana
2025-12-27 02:29:28 +00:00
committed by GitHub
+6 -1
View File
@@ -27,9 +27,14 @@ stdenv.mkDerivation (finalAttrs: {
patches = [
# backport patch for cmake 4 compatibility
(fetchpatch {
url = "https://github.com/Blosc/c-blosc/commit/051b9d2cb9437e375dead8574f66d80ebce47bee.patch";
url = "https://github.com/Blosc/c-blosc/commit/051b9d2cb9437e375dead8574f66d80ebce47bee.patch?full_index=1";
hash = "sha256-90dUd8KQqq+uVbngfoKF45rmFxbLVVgZjg0Xfc/vpcc=";
})
# backport patch for gcc 15 compatibility
(fetchpatch {
url = "https://github.com/Blosc/c-blosc/commit/774f6a0ebaa0c617f7f13ccf6bc89d17eba04654.patch?full_index=1";
hash = "sha256-C5nwMXjmlxkBvN1/4fuGTgFANqTD/+ikxYPLo1fwm6Q=";
})
];
# https://github.com/NixOS/nixpkgs/issues/144170