summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2014-06-01 05:15:20 +0000
committerJohn Wiegley <johnw@newartisans.com>2014-06-01 05:15:20 +0000
commit2481a71c3c745b4070b89dc37832dc45e9be1382 (patch)
tree60260cd508aae647b0912d3516fa560edc452a95 /pkgs/development
parent439482cfc1a38837bdf49531b5ff3a3a6d710dd8 (diff)
downloadnixlib-2481a71c3c745b4070b89dc37832dc45e9be1382.tar
nixlib-2481a71c3c745b4070b89dc37832dc45e9be1382.tar.gz
nixlib-2481a71c3c745b4070b89dc37832dc45e9be1382.tar.bz2
nixlib-2481a71c3c745b4070b89dc37832dc45e9be1382.tar.lz
nixlib-2481a71c3c745b4070b89dc37832dc45e9be1382.tar.xz
nixlib-2481a71c3c745b4070b89dc37832dc45e9be1382.tar.zst
nixlib-2481a71c3c745b4070b89dc37832dc45e9be1382.zip
Disable use of graphite2 on darwin until #2800 is fixed
This applies to harfbuzz, pango and texlive.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/harfbuzz/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/harfbuzz/default.nix b/pkgs/development/libraries/harfbuzz/default.nix
index 2e596b17af3d..9cdd2a275bff 100644
--- a/pkgs/development/libraries/harfbuzz/default.nix
+++ b/pkgs/development/libraries/harfbuzz/default.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, pkgconfig, glib, freetype, cairo, libintlOrEmpty
 , icu, graphite2
 , withIcu ? false # recommended by upstream as default, but most don't needed and it's big
-, withGraphite2 ? true # it is small and major distros do include it
+, withGraphite2 ? !stdenv.isDarwin # it is small and major distros do include it
 }:
 
 # TODO: split non-icu and icu lib into different outputs?