summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2014-08-14 14:31:13 +0200
committerPeter Simons <simons@cryp.to>2014-08-14 14:41:22 +0200
commitf226e6c40cab60e2a00956f07bf6ecf7486f9d9e (patch)
treee551fd52fc8eae00ef123912e67f1df42c8b181a /pkgs
parent77a31ddec15e53a224847a24d6cb078ecb0f8671 (diff)
downloadnixlib-f226e6c40cab60e2a00956f07bf6ecf7486f9d9e.tar
nixlib-f226e6c40cab60e2a00956f07bf6ecf7486f9d9e.tar.gz
nixlib-f226e6c40cab60e2a00956f07bf6ecf7486f9d9e.tar.bz2
nixlib-f226e6c40cab60e2a00956f07bf6ecf7486f9d9e.tar.lz
nixlib-f226e6c40cab60e2a00956f07bf6ecf7486f9d9e.tar.xz
nixlib-f226e6c40cab60e2a00956f07bf6ecf7486f9d9e.tar.zst
nixlib-f226e6c40cab60e2a00956f07bf6ecf7486f9d9e.zip
haskell-text-icu: this package is broken on Darwin
See <https://github.com/bos/text-icu/issues/6>.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/haskell/text-icu/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/haskell/text-icu/default.nix b/pkgs/development/libraries/haskell/text-icu/default.nix
index 4a7db1560ea7..b47672e12a9c 100644
--- a/pkgs/development/libraries/haskell/text-icu/default.nix
+++ b/pkgs/development/libraries/haskell/text-icu/default.nix
@@ -14,11 +14,12 @@ 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";
     license = self.stdenv.lib.licenses.bsd3;
     platforms = self.ghc.meta.platforms;
+    hydraPlatforms = self.stdenv.lib.platforms.linux;
+    broken = self.stdenv.isDarwin;     # https://github.com/bos/text-icu/issues/6
   };
 })