From abdd87da3c19cfcf8311886cd5f90643612fb023 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 15 Apr 2014 10:59:53 +0200 Subject: [PATCH] haskell-text-icu: don't run test suite on Darwin https://github.com/bos/text-icu/issues/6 https://github.com/NixOS/nixpkgs/pull/2254 --- pkgs/development/libraries/haskell/text-icu/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/haskell/text-icu/default.nix b/pkgs/development/libraries/haskell/text-icu/default.nix index 6dc42beee408..222475b24bb9 100644 --- a/pkgs/development/libraries/haskell/text-icu/default.nix +++ b/pkgs/development/libraries/haskell/text-icu/default.nix @@ -12,6 +12,7 @@ cabal.mkDerivation (self: { testFrameworkQuickcheck2 text ]; extraLibraries = [ icu ]; + doCheck = !self.stdenv.isDarwin; meta = { homepage = "https://github.com/bos/text-icu"; description = "Bindings to the ICU library";