Merge pull request #306995 from amalgame21/profanity-qrencode

profanity: Enable omemo fingerprint qrcode support
This commit is contained in:
Sandro 2024-04-27 21:26:59 +02:00 committed by GitHub
commit f4446e3adc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,7 +20,7 @@
, sqlite
, autoAwaySupport ? true, libXScrnSaver, libX11
, notifySupport ? true, libnotify, gdk-pixbuf
, omemoSupport ? true, libsignal-protocol-c, libgcrypt
, omemoSupport ? true, libsignal-protocol-c, libgcrypt, qrencode
, pgpSupport ? true, gpgme
, pythonPluginSupport ? true, python3
, traySupport ? true, gtk3
@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
sqlite
] ++ lib.optionals autoAwaySupport [ libXScrnSaver libX11 ]
++ lib.optionals notifySupport [ libnotify gdk-pixbuf ]
++ lib.optionals omemoSupport [ libsignal-protocol-c libgcrypt ]
++ lib.optionals omemoSupport [ libsignal-protocol-c libgcrypt qrencode ]
++ lib.optionals pgpSupport [ gpgme ]
++ lib.optionals pythonPluginSupport [ python3 ]
++ lib.optionals traySupport [ gtk3 ];