ghc-api-compat: unmarkBroken on older ghcs

This commit is contained in:
maralorn 2022-12-24 18:28:23 +01:00
parent 65d6fc555b
commit e897471eee
2 changed files with 2 additions and 2 deletions

View file

@ -67,7 +67,7 @@ self: super: {
base-compat-batteries = addBuildDepend self.OneTuple super.base-compat-batteries;
# Pick right versions for GHC-specific packages
ghc-api-compat = doDistribute self.ghc-api-compat_8_10_7;
ghc-api-compat = doDistribute (unmarkBroken self.ghc-api-compat_8_10_7);
# ghc versions which dont match the ghc-lib-parser-ex version need the
# additional dependency to compile successfully.

View file

@ -133,7 +133,7 @@ self: super: {
# vector 0.12.2 indroduced doctest checks that dont work on older compilers
vector = dontCheck super.vector;
ghc-api-compat = doDistribute super.ghc-api-compat_8_6;
ghc-api-compat = doDistribute (unmarkBroken super.ghc-api-compat_8_6);
mime-string = disableOptimization super.mime-string;