From 63efc2ee3877f9da46455445ef6827d192fcdfe7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 3 May 2015 20:34:10 +0200 Subject: [PATCH] haskell-doctest-prop: disable broken test suite --- 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 f6819a100fef..f65e43c9b51e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -787,4 +787,7 @@ self: super: { # https://github.com/ndmitchell/shake/issues/206 shake = overrideCabal super.shake (drv: { doCheck = !pkgs.stdenv.isDarwin; }); + # https://github.com/nushio3/doctest-prop/issues/1 + doctest-prop = dontCheck super.doctest-prop; + }