summary refs log tree commit diff
path: root/pkgs/development/libraries/harfbuzz
diff options
context:
space:
mode:
authorDaiderd Jordan <daiderd@gmail.com>2018-04-25 21:35:28 +0200
committerDaiderd Jordan <daiderd@gmail.com>2018-08-21 21:01:34 +0200
commit10267bfc9073174871772a34ebafd4c946a9f09f (patch)
tree8efc8574d3c85dc87ca4fcc97443568124de8a31 /pkgs/development/libraries/harfbuzz
parentc93660a7a434246da36ed4913f235092f2f25a7c (diff)
downloadnixpkgs-10267bfc9073174871772a34ebafd4c946a9f09f.tar
nixpkgs-10267bfc9073174871772a34ebafd4c946a9f09f.tar.gz
nixpkgs-10267bfc9073174871772a34ebafd4c946a9f09f.tar.bz2
nixpkgs-10267bfc9073174871772a34ebafd4c946a9f09f.tar.lz
nixpkgs-10267bfc9073174871772a34ebafd4c946a9f09f.tar.xz
nixpkgs-10267bfc9073174871772a34ebafd4c946a9f09f.tar.zst
nixpkgs-10267bfc9073174871772a34ebafd4c946a9f09f.zip
harfbuzz: avoid rebuilds
Diffstat (limited to 'pkgs/development/libraries/harfbuzz')
-rw-r--r--pkgs/development/libraries/harfbuzz/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/harfbuzz/default.nix b/pkgs/development/libraries/harfbuzz/default.nix
index ff60afc1f2b..383f7f60f9b 100644
--- a/pkgs/development/libraries/harfbuzz/default.nix
+++ b/pkgs/development/libraries/harfbuzz/default.nix
@@ -30,10 +30,10 @@ stdenv.mkDerivation {
 
   configureFlags = [
     # not auto-detected by default
-    "--with-coretext=${if withCoreText then "yes" else "no"}"
     "--with-graphite2=${if withGraphite2 then "yes" else "no"}"
     "--with-icu=${if withIcu then "yes" else "no"}"
-  ];
+  ]
+    ++ stdenv.lib.optional withCoreText "--with-coretext=yes";
 
   nativeBuildInputs = [ pkgconfig libintl ];