harfbuzz: avoid rebuilds

This commit is contained in:
Daiderd Jordan
2018-08-21 21:01:34 +02:00
parent c93660a7a4
commit 10267bfc90
@@ -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 ];