haskell-shake: disable test suite on Darwin

The tests fail because of https://github.com/ndmitchell/shake/issues/206.
This commit is contained in:
Peter Simons 2015-04-26 13:05:21 +02:00
parent effd525c55
commit 066d6146fc

View File

@ -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; });
}