From 841cfa9764d917fc920a7a95ca27e5263b96b995 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 7 Jul 2015 13:46:09 +0200 Subject: [PATCH] haskell-hspec: break infinite recursion in testDepends Suggested by @Fuuzetsu in https://github.com/NixOS/nixpkgs/issues/8664. --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index f8ed07b3aad..a6424b9e44d 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -14,6 +14,7 @@ self: super: { # Break infinite recursions. Dust-crypto = dontCheck super.Dust-crypto; hasql-postgres = dontCheck super.hasql-postgres; + hspec = super.hspec.override { stringbuilder = dontCheck super.stringbuilder; }; hspec-expectations = dontCheck super.hspec-expectations; HTTP = dontCheck super.HTTP; mwc-random = dontCheck super.mwc-random;