[staging-next] haskellPackages.HsOpenSSL: work around -Werror failures with gcc 14 (#365458)

This commit is contained in:
sternenseemann
2024-12-16 17:38:54 +01:00
committed by GitHub
@@ -240,6 +240,14 @@ self: super: {
];
}) super.statistics;
# Work around -Werror failures until a more permanent solution is released
# https://github.com/haskell-cryptography/HsOpenSSL/issues/88
# https://github.com/haskell-cryptography/HsOpenSSL/issues/93
# https://github.com/haskell-cryptography/HsOpenSSL/issues/95
HsOpenSSL = appendConfigureFlags [
"--ghc-option=-optc=-Wno-incompatible-pointer-types"
] super.HsOpenSSL;
# There are numerical tests on random data, that may fail occasionally
lapack = dontCheck super.lapack;