From 56b293231b3b09734c293bb1fb3d57e60dc75aba Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 23 Jun 2015 11:38:18 +0200 Subject: [PATCH] haskell-shake: disable test suite because of https://github.com/ndmitchell/shake/issues/267 --- pkgs/development/haskell-modules/configuration-common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 7c2eb296a3a..269c020c376 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;