Skip to content

Commit d77247a

Browse files
committed
more fixes
1 parent 6365f1a commit d77247a

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

default.nix

+12-6
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,18 @@ let
3838
splicesEval = self: super: {
3939
haskell = super.haskell // {
4040
compiler = super.haskell.compiler // {
41-
ghcSplices-8_6 = (splices-src.patchGHC (super.haskell.compiler.ghc865) "ghc-8.6.5");
42-
ghcSplices-8_10 = ((splices-src.patchGHC (super.haskell.compiler.ghc8107) "ghc-8.10.7").overrideAttrs (drv: {
43-
patches = [ ] ++ (drv.patches or [ ]);
44-
})).override {
45-
enableProfiledLibs = true;
46-
};
41+
ghcSplices-8_6 = (splices-src.patchGHC
42+
(super.haskell.compiler.ghc865.overrideAttrs (old: {
43+
enableParallelBuilding = false;
44+
patches = [ ];
45+
})) "ghc-8.6.5");
46+
47+
ghcSplices-8_10 = (splices-src.patchGHC
48+
(super.haskell.compiler.ghc8107.overrideAttrs (old: {
49+
patches = [ ];
50+
})) "ghc-8.10.7").override
51+
{ enableProfiledLibs = true; };
52+
4753
ghcjsSplices-8_10 = splices-src.patchGHCJS (super.haskell.compiler.ghcjs810);
4854
};
4955
packages = super.haskell.packages // {

0 commit comments

Comments
 (0)