summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-07-07 13:46:09 +0200
committerPeter Simons <simons@cryp.to>2015-07-11 16:05:00 +0200
commit841cfa9764d917fc920a7a95ca27e5263b96b995 (patch)
tree118d1fdbf53da1d1dc64b8a24f2f8108d04996bb /pkgs/development/haskell-modules/configuration-common.nix
parent33c3e62fbb839b4b02a2d80aa1e0003eb589df59 (diff)
downloadnixlib-841cfa9764d917fc920a7a95ca27e5263b96b995.tar
nixlib-841cfa9764d917fc920a7a95ca27e5263b96b995.tar.gz
nixlib-841cfa9764d917fc920a7a95ca27e5263b96b995.tar.bz2
nixlib-841cfa9764d917fc920a7a95ca27e5263b96b995.tar.lz
nixlib-841cfa9764d917fc920a7a95ca27e5263b96b995.tar.xz
nixlib-841cfa9764d917fc920a7a95ca27e5263b96b995.tar.zst
nixlib-841cfa9764d917fc920a7a95ca27e5263b96b995.zip
haskell-hspec: break infinite recursion in testDepends
Suggested by @Fuuzetsu in https://github.com/NixOS/nixpkgs/issues/8664.
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index f8ed07b3aadb..a6424b9e44d7 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;