File tree 1 file changed +12
-6
lines changed
1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 38
38
splicesEval = self : super : {
39
39
haskell = super . haskell // {
40
40
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
+
47
53
ghcjsSplices-8_10 = splices-src . patchGHCJS ( super . haskell . compiler . ghcjs810 ) ;
48
54
} ;
49
55
packages = super . haskell . packages // {
You can’t perform that action at this time.
0 commit comments