From 5ae7e44eedcf541f209a69a6f7764e4acf1d3cf9 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Tue, 7 Apr 2026 12:02:54 +0200 Subject: [PATCH] haskell.packages.ghc914.blaze-markup: allow containers 0.8 in tests --- .../development/haskell-modules/configuration-ghc-9.14.x.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.14.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.14.x.nix index b7b7452c9e4a..b2bd993d5b61 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.14.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.14.x.nix @@ -154,4 +154,9 @@ with haskellLib; # Fails to compile with GHC 9.14 https://github.com/snoyberg/mono-traversable/pull/261 mono-traversable = dontCheck super.mono-traversable; + + # Too strict bound on containers in test suite + # https://github.com/jaspervdj/blaze-markup/issues/69 + blaze-markup = doJailbreak super.blaze-markup; + }