diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5bc5fab66450..8e23b70393ca 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1054,6 +1054,14 @@ with haskellLib; webdriver-angular = dontCheck super.webdriver-angular; xsd = dontCheck super.xsd; + # Test in question times out on Hydra builders. + grisette = overrideCabal (drv: { + testFlags = drv.testFlags or [ ] ++ [ + "-t" + "!mrgAsum/semantics" + ]; + }) super.grisette; + # Allow template-haskell 2.22 # https://github.com/well-typed/ixset-typed/pull/23 ixset-typed =