Add a couple of overrides to fix build with GHC 8.6.1.
This commit is contained in:
parent
89972ff45f
commit
dbffdee9d2
|
@ -57,4 +57,11 @@ self: super: {
|
||||||
tar = doJailbreak super.tar; # containers >=0.2 && <0.6
|
tar = doJailbreak super.tar; # containers >=0.2 && <0.6
|
||||||
test-framework = doJailbreak super.test-framework; # containers >=0.1 && <0.6
|
test-framework = doJailbreak super.test-framework; # containers >=0.1 && <0.6
|
||||||
|
|
||||||
|
# Older versions don't work with ghc 8.6.1:
|
||||||
|
hspec-core = self.hspec-core_2_5_6;
|
||||||
|
hspec-core_2_5_6 = super.hspec-core_2_5_6.overrideScope (self: super: { QuickCheck = self.QuickCheck_2_12_4; });
|
||||||
|
hspec-meta = self.hspec-meta_2_5_6;
|
||||||
|
optparse-applicative = doJailbreak super.optparse-applicative;
|
||||||
|
unordered-containers = dontCheck super.unordered-containers;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue