haskellPackages.graphql: allow hspec 2.9

This commit is contained in:
sternenseemann 2023-03-13 11:15:18 +01:00
parent 5cc155a509
commit 4d41563384

View file

@ -285,6 +285,11 @@ self: super: {
opencv = dontCheck (appendPatch ./patches/opencv-fix-116.patch super.opencv);
opencv-extra = dontCheck (appendPatch ./patches/opencv-fix-116.patch super.opencv-extra);
# Too strict lower bound on hspec
graphql =
assert lib.versionOlder self.hspec.version "2.10";
doJailbreak super.graphql;
# https://github.com/ekmett/structures/issues/3
structures = dontCheck super.structures;