From 415d23fb4d2b2823a87d410da9beef8332d82d7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 15 Mar 2022 09:18:36 +0100 Subject: [PATCH] gpgme: fix the qt5 bindings Commit 1340607f3d (PR #155384) broke list-nesting of the passed qtbase. Surprisingly to me, that prevented it from appearing in PKG_CONFIG_PATH and thus from building the Qt bindings. Subsequently those were then missing in libsForQt5.libkleo and maybe other places. --- pkgs/development/libraries/gpgme/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix index 405814e19a9..75b13b6b7ef 100644 --- a/pkgs/development/libraries/gpgme/default.nix +++ b/pkgs/development/libraries/gpgme/default.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { libassuan libgpg-error pth - ] ++ lib.optional (qtbase != null) [ + ] ++ lib.optionals (qtbase != null) [ qtbase ];