Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cidkidnix committed Jun 30, 2022
1 parent 1924cb9 commit 4452db0
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,18 @@ let
splicesEval = self: super: {
haskell = super.haskell // {
compiler = super.haskell.compiler // {
ghcSplices-8_6 = (splices-src.patchGHC (super.haskell.compiler.ghc865) "ghc-8.6.5");
ghcSplices-8_10 = ((splices-src.patchGHC (super.haskell.compiler.ghc8107) "ghc-8.10.7").overrideAttrs (drv: {
patches = [ ] ++ (drv.patches or [ ]);
})).override {
enableProfiledLibs = true;
};
ghcSplices-8_6 = (splices-src.patchGHC
(super.haskell.compiler.ghc865.overrideAttrs (old: {
enableParallelBuilding = false;
patches = [ ];
})) "ghc-8.6.5");

ghcSplices-8_10 = (splices-src.patchGHC
(super.haskell.compiler.ghc8107.overrideAttrs (old: {
patches = [ ];
})) "ghc-8.10.7").override
{ enableProfiledLibs = true; };

ghcjsSplices-8_10 = splices-src.patchGHCJS (super.haskell.compiler.ghcjs810);
};
packages = super.haskell.packages // {
Expand Down

0 comments on commit 4452db0

Please sign in to comment.