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.
This commit is contained in:
Vladimír Čunát 2022-03-15 09:18:36 +01:00
parent 249cbfa293
commit 415d23fb4d
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -71,7 +71,7 @@ stdenv.mkDerivation rec {
libassuan
libgpg-error
pth
] ++ lib.optional (qtbase != null) [
] ++ lib.optionals (qtbase != null) [
qtbase
];