cabal-install: override native Cabal version on older compilers

This commit is contained in:
Peter Simons 2019-08-28 15:45:06 +00:00
parent 374a39e598
commit 2e08ac73ca
2 changed files with 6 additions and 0 deletions

View file

@ -40,6 +40,9 @@ self: super: {
unix = null;
xhtml = null;
# Needs Cabal 3.0.x.
cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_0_0_0; });
# Restricts aeson to <1.4
# https://github.com/purescript/purescript/pull/3537
purescript = doJailbreak super.purescript;

View file

@ -41,6 +41,9 @@ self: super: {
unix = null;
xhtml = null;
# Needs Cabal 3.0.x.
cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_3_0_0_0; });
# https://github.com/tibbe/unordered-containers/issues/214
unordered-containers = dontCheck super.unordered-containers;