1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-05-18 03:26:01 +00:00

haskell-text-icu: this package is broken on Darwin

See <https://github.com/bos/text-icu/issues/6>.
This commit is contained in:
Peter Simons 2014-08-14 14:31:13 +02:00
parent 77a31ddec1
commit f226e6c40c

View file

@ -14,11 +14,12 @@ cabal.mkDerivation (self: {
testFrameworkQuickcheck2 text testFrameworkQuickcheck2 text
]; ];
extraLibraries = [ icu ]; extraLibraries = [ icu ];
doCheck = !self.stdenv.isDarwin;
meta = { meta = {
homepage = "https://github.com/bos/text-icu"; homepage = "https://github.com/bos/text-icu";
description = "Bindings to the ICU library"; description = "Bindings to the ICU library";
license = self.stdenv.lib.licenses.bsd3; license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
hydraPlatforms = self.stdenv.lib.platforms.linux;
broken = self.stdenv.isDarwin; # https://github.com/bos/text-icu/issues/6
}; };
}) })