From 47a5a7e05da4b5def40fc6f9b27f61a4bfb18f83 Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Fri, 26 Sep 2025 17:18:20 +0200 Subject: [PATCH] fltk14: disable pango if cairo is disabled --- pkgs/development/libraries/fltk/1.4.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/fltk/1.4.nix b/pkgs/development/libraries/fltk/1.4.nix index a83ef702d631..ff8f8734926b 100644 --- a/pkgs/development/libraries/fltk/1.4.nix +++ b/pkgs/development/libraries/fltk/1.4.nix @@ -25,7 +25,9 @@ withCairo ? true, cairo, - withPango ? withXorg, + # pango depends on Xft, and implicitly enables cairo. + # So only enable pango if cairo is enabled too. + withPango ? withXorg && withCairo, pango, withDocs ? true,