haskell.packages.ghc94.th-desugar: 1.14 -> 1.15

Also add override for GHC 9.6, 1.15 is the first version to support GHC
9.6. The override likely doesn't work yet, but is added in preparation.

To make it compile, we need a matching version of th-abstraction.
This commit is contained in:
sternenseemann 2023-03-17 15:38:23 +01:00
parent 6dae8a8311
commit eabab5397e
2 changed files with 5 additions and 1 deletions

View File

@ -131,7 +131,8 @@ in {
syb = dontCheck super.syb;
splitmix = doJailbreak super.splitmix;
th-desugar = self.th-desugar_1_14;
th-desugar = doDistribute self.th-desugar_1_15;
th-abstraction = doDistribute self.th-abstraction_0_5_0_0;
time-compat = doJailbreak super.time-compat;
tomland = doJailbreak super.tomland;
type-equality = doJailbreak super.type-equality;

View File

@ -47,4 +47,7 @@ self: super: {
transformers = null;
unix = null;
xhtml = null;
th-desugar = doDistribute self.th-desugar_1_15;
th-abstraction = doDistribute self.th-abstraction_0_5_0_0;
}