From 066d6146fc4d84848095b2633d4a82330c271121 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 26 Apr 2015 13:05:21 +0200 Subject: [PATCH] haskell-shake: disable test suite on Darwin The tests fail because of https://github.com/ndmitchell/shake/issues/206. --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index a47a2345224..2e2a5ba6a1c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -782,4 +782,7 @@ self: super: { HGamer3D-Common = dontDistribute super.HGamer3D-Common; HGamer3D-Data = markBroken super.HGamer3D-Data; + # https://github.com/ndmitchell/shake/issues/206 + shake = overrideCabal super.shake (drv: { doCheck = !pkgs.stdenv.isDarwin; }); + }