summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-06-23 11:38:18 +0200
committerPeter Simons <simons@cryp.to>2015-06-24 12:28:04 +0200
commit56b293231b3b09734c293bb1fb3d57e60dc75aba (patch)
tree9e0eebc8dc53e494e7018b792222e57f3737c309 /pkgs/development/haskell-modules
parentddcdeaf2c13929cc26b99c28392400256c88e670 (diff)
downloadnixlib-56b293231b3b09734c293bb1fb3d57e60dc75aba.tar
nixlib-56b293231b3b09734c293bb1fb3d57e60dc75aba.tar.gz
nixlib-56b293231b3b09734c293bb1fb3d57e60dc75aba.tar.bz2
nixlib-56b293231b3b09734c293bb1fb3d57e60dc75aba.tar.lz
nixlib-56b293231b3b09734c293bb1fb3d57e60dc75aba.tar.xz
nixlib-56b293231b3b09734c293bb1fb3d57e60dc75aba.tar.zst
nixlib-56b293231b3b09734c293bb1fb3d57e60dc75aba.zip
haskell-shake: disable test suite because of https://github.com/ndmitchell/shake/issues/267
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 7c2eb296a3ab..269c020c3760 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -792,7 +792,8 @@ self: super: {
   HGamer3D-Data = markBroken super.HGamer3D-Data;
 
   # https://github.com/ndmitchell/shake/issues/206
-  shake = overrideCabal super.shake (drv: { doCheck = !pkgs.stdenv.isDarwin; });
+  # https://github.com/ndmitchell/shake/issues/267
+  shake = overrideCabal super.shake (drv: { doCheck = !pkgs.stdenv.isDarwin && false; });
 
   # https://github.com/nushio3/doctest-prop/issues/1
   doctest-prop = dontCheck super.doctest-prop;