haskellPackages.{hd5-lite,bindings-libcddb}: disable gcc 14 -Werror

This commit is contained in:
sternenseemann
2024-12-21 20:31:20 +01:00
parent 81c6edc05e
commit dc09700185
@@ -252,6 +252,12 @@ self: super: {
HsSyck = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=implicit-function-declaration"
] super.HsSyck;
bindings-libcddb = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=incompatible-pointer-types"
] super.bindings-libcddb;
hdf5-lite = appendConfigureFlags [
"--ghc-option=-optc=-Wno-error=implicit-function-declaration"
] super.hdf5-lite;
# There are numerical tests on random data, that may fail occasionally
lapack = dontCheck super.lapack;