haskellPackages.HsOpenSSL: work around -Werror failures

See the linked issues. Probably due to gcc >= 14.
This commit is contained in:
sternenseemann
2024-12-15 23:58:12 +01:00
parent 1879ba3ffd
commit f1fb86cc6f
@@ -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;