mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
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.
This commit is contained in:
parent
3207a79883
commit
f833757ba1
|
@ -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…
Reference in a new issue