Skip to content

Commit

Permalink
haskellPackages.HsOpenSSL: work around -Werror failures
Browse files Browse the repository at this point in the history
See the linked issues. Probably due to gcc >= 14.
  • Loading branch information
sternenseemann committed Dec 15, 2024
1 parent 1879ba3 commit f1fb86c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit f1fb86c

Please sign in to comment.