summary refs log tree commit diff
path: root/pkgs/development/libraries/gpgme
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2022-03-15 09:18:36 +0100
committerVladimír Čunát <v@cunat.cz>2022-03-15 09:31:06 +0100
commit415d23fb4d2b2823a87d410da9beef8332d82d7b (patch)
treedb407678663390bea706b4d20a311f0a8a10c45a /pkgs/development/libraries/gpgme
parent249cbfa29344696292407110ab216c94b28f6cbe (diff)
downloadnixpkgs-415d23fb4d2b2823a87d410da9beef8332d82d7b.tar
nixpkgs-415d23fb4d2b2823a87d410da9beef8332d82d7b.tar.gz
nixpkgs-415d23fb4d2b2823a87d410da9beef8332d82d7b.tar.bz2
nixpkgs-415d23fb4d2b2823a87d410da9beef8332d82d7b.tar.lz
nixpkgs-415d23fb4d2b2823a87d410da9beef8332d82d7b.tar.xz
nixpkgs-415d23fb4d2b2823a87d410da9beef8332d82d7b.tar.zst
nixpkgs-415d23fb4d2b2823a87d410da9beef8332d82d7b.zip
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.
Diffstat (limited to 'pkgs/development/libraries/gpgme')
-rw-r--r--pkgs/development/libraries/gpgme/default.nix2
1 files changed, 1 insertions, 1 deletions
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
   ];