haskellPackages.crypt-sha512: fix build with libxcrypt
and disable tests due to different ehaviour exhibited compared to glibc when a low number of rounds is passed. https://github.com/phadej/crypt-sha512/issues/13
This commit is contained in:
@@ -2531,6 +2531,16 @@ self: super: {
|
||||
# Restrictive upper bound on base.
|
||||
# Remove once version 1.* is released
|
||||
monad-bayes = doJailbreak super.monad-bayes;
|
||||
|
||||
crypt-sha512 = overrideCabal (drv: {
|
||||
librarySystemDepends = [
|
||||
pkgs.libxcrypt
|
||||
];
|
||||
# Test failure after libxcrypt migration, reported upstrem at
|
||||
# https://github.com/phadej/crypt-sha512/issues/13
|
||||
doCheck = false;
|
||||
}) super.crypt-sha512;
|
||||
|
||||
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super // (let
|
||||
# We need to build purescript with these dependencies and thus also its reverse
|
||||
# dependencies to avoid version mismatches in their dependency closure.
|
||||
|
||||
Reference in New Issue
Block a user