Skip to content

Commit

Permalink
[staging-next] haskellPackages.HsOpenSSL: work around -Werror failure…
Browse files Browse the repository at this point in the history
…s with gcc 14 (#365458)
  • Loading branch information
sternenseemann authored Dec 16, 2024
2 parents 2075b1d + f1fb86c commit edb0803
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 edb0803

Please sign in to comment.