haskellPackages.regex-compat-tdfa: ignore upper bound on base

This bound was (rightfully) introduced via a hackage revision, but it
doesn't apply to us because we patch around the incompatibility with
GHC >= 9.0.
This commit is contained in:
sternenseemann 2022-07-17 12:20:30 +02:00
parent 42343a63f4
commit 356f870a83

View file

@ -2394,7 +2394,11 @@ self: super: {
# https://hub.darcs.net/shelarcy/regex-compat-tdfa/issue/3
regex-compat-tdfa = appendPatches [
./patches/regex-compat-tdfa-ghc-9.0.patch
] super.regex-compat-tdfa;
] (overrideCabal super.regex-compat-tdfa {
# Revision introduces bound base < 4.15
revision = null;
editedCabalFile = null;
};
# https://github.com/kowainik/validation-selective/issues/64
validation-selective = doJailbreak super.validation-selective;