harfbuzz: avoid rebuilds

This commit is contained in:
Daiderd Jordan 2018-04-25 21:35:28 +02:00
parent c93660a7a4
commit 10267bfc90
No known key found for this signature in database
GPG Key ID: D02435D05B810C96
1 changed files with 2 additions and 2 deletions

View File

@ -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 ];