haskellPackages.raaz: disable parallel building

Parallel builds seems to interfere with backpack type checking.
See: https://gitlab.haskell.org/ghc/ghc/-/issues/17188 for more details.
main
Piyush P Kurur 2 years ago committed by sternenseemann
parent 3207a79883
commit f833757ba1
  1. 10
      pkgs/development/haskell-modules/configuration-common.nix
  2. 1
      pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
  3. 3
      pkgs/development/haskell-modules/hackage-packages.nix

@ -2222,6 +2222,16 @@ self: super: {
# Invalid CPP in test suite: https://github.com/cdornan/memory-cd/issues/1
memory-cd = dontCheck super.memory-cd;
# raaz-0.3 onwards uses backpack and it does not play nicely with
# parallel builds using -j
#
# See: https://gitlab.haskell.org/ghc/ghc/-/issues/17188
#
# Overwrite the build cores
raaz = overrideCabal (drv: {
enableParallelBuilding = false;
}) super.raaz;
# https://github.com/andreymulik/sdp/issues/3
sdp = disableLibraryProfiling super.sdp;
sdp-binary = disableLibraryProfiling super.sdp-binary;

@ -4012,7 +4012,6 @@ broken-packages:
- quiver
- quokka
- quoridor-hs
- raaz
- RabbitMQ
- rad
- radian

@ -141883,7 +141883,6 @@ self: {
executableHaskellDepends = [ base ];
description = "Convert an eventlog into the speedscope json format";
license = lib.licenses.bsd3;
hydraPlatforms = lib.platforms.none;
}) {};
"hs-swisstable-hashtables-class" = callPackage
@ -226363,8 +226362,6 @@ self: {
doHaddock = false;
description = "Fast and type safe cryptography";
license = "(Apache-2.0 OR BSD-3-Clause)";
hydraPlatforms = lib.platforms.none;
broken = true;
}) {};
"rabocsv2qif" = callPackage

Loading…
Cancel
Save