about summary refs log tree commit diff
path: root/pkgs/development/libraries/harfbuzz
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2022-11-14 06:01:48 +0000
committerGitHub <noreply@github.com>2022-11-14 06:01:48 +0000
commitd6294f393242ff80cf9cbf86154656beddd84c37 (patch)
tree0d609c7533cc8666cbb5055370fc9f4b9fe1ee8c /pkgs/development/libraries/harfbuzz
parent7517526b94735f8c64c720dd74289912a9e3b8b9 (diff)
parent90d0a0faec8738d90fdeebecb47c136e2dad6bfd (diff)
Merge staging-next into staging
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 13f73a7ac1af6..797b3243ab9a0 100644
--- a/pkgs/development/libraries/harfbuzz/default.nix
+++ b/pkgs/development/libraries/harfbuzz/default.nix
@@ -33,8 +33,8 @@
 let
   version = "5.3.1";
   inherit (lib) optional optionals optionalString;
-  mesonFeatureFlag = opt: b:
-    "-D${opt}=${if b then "enabled" else "disabled"}";
+  mesonFeatureFlag = feature: flag:
+    "-D${feature}=${if flag then "enabled" else "disabled"}";
 in
 
 stdenv.mkDerivation {