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-08-04 13:15:17 +0200
committerPeter Simons <simons@cryp.to>2015-08-05 21:36:20 +0200
commit94e1660d002802a6012f8bb8e92c7d097209a9c8 (patch)
tree60beafab377c6c305f8248f420fcdf4da3207ce3 /pkgs/development/haskell-modules/configuration-common.nix
parent552fcd0b754a53e85715588aed5becada5d6d224 (diff)
downloadnixlib-94e1660d002802a6012f8bb8e92c7d097209a9c8.tar
nixlib-94e1660d002802a6012f8bb8e92c7d097209a9c8.tar.gz
nixlib-94e1660d002802a6012f8bb8e92c7d097209a9c8.tar.bz2
nixlib-94e1660d002802a6012f8bb8e92c7d097209a9c8.tar.lz
nixlib-94e1660d002802a6012f8bb8e92c7d097209a9c8.tar.xz
nixlib-94e1660d002802a6012f8bb8e92c7d097209a9c8.tar.zst
nixlib-94e1660d002802a6012f8bb8e92c7d097209a9c8.zip
haskell-mockery: run test suite with "TRAVIS=true" set to avoid timing issues
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index a7d2ca907bea..9f0b5d4599a0 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -900,4 +900,7 @@ self: super: {
   # https://ghc.haskell.org/trac/ghc/ticket/9825
   vimus = overrideCabal super.vimus (drv: { broken = pkgs.stdenv.isLinux && pkgs.stdenv.isi686; });
 
+  # https://github.com/hspec/mockery/issues/6
+  mockery = overrideCabal super.mockery (drv: { preCheck = "export TRAVIS=true"; });
+
 }