From b60636c8c07865dfccb032b7e0ccf0f32dd25864 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Sat, 12 Jun 2021 22:20:51 +0200 Subject: [PATCH] harfbuzz: Sort mesonFlags --- pkgs/development/libraries/harfbuzz/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/harfbuzz/default.nix b/pkgs/development/libraries/harfbuzz/default.nix index 9095e4872382..db142286fe4e 100644 --- a/pkgs/development/libraries/harfbuzz/default.nix +++ b/pkgs/development/libraries/harfbuzz/default.nix @@ -54,17 +54,17 @@ stdenv.mkDerivation { outputBin = "dev"; mesonFlags = [ - (mesonFeatureFlag "graphite" withGraphite2) - (mesonFeatureFlag "icu" withIcu) - (mesonFeatureFlag "coretext" withCoreText) # upstream recommends cairo, but it is only used for development purposes # and is not part of the library. # Cairo causes transitive (build) dependencies on various X11 or other # GUI-related libraries, so it shouldn't be re-added lightly. (mesonFeatureFlag "cairo" false) - (mesonFeatureFlag "introspection" isNativeCompilation) # chafa is only used in a development utility, not in the library (mesonFeatureFlag "chafa" false) + (mesonFeatureFlag "coretext" withCoreText) + (mesonFeatureFlag "graphite" withGraphite2) + (mesonFeatureFlag "icu" withIcu) + (mesonFeatureFlag "introspection" isNativeCompilation) ]; nativeBuildInputs = [