trojita: PGP decryption support

This commit is contained in:
Emery Hemingway 2019-09-02 12:38:01 +02:00
parent 94afe19f93
commit b3e80604a7

View File

@ -1,8 +1,10 @@
{ akonadi-contacts { akonadi-contacts
, cmake , cmake
, fetchgit , fetchgit
, gnupg
, gpgme , gpgme
, kcontacts , kcontacts
, kf5gpgmepp
, lib , lib
, mimetic , mimetic
, mkDerivation , mkDerivation
@ -33,18 +35,23 @@ mkDerivation rec {
qtbase qtbase
qtkeychain qtkeychain
qtwebkit qtwebkit
mimetic
kf5gpgmepp
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
pkgconfig pkgconfig
qttools qttools
gnupg
]; ];
meta = with lib; { meta = with lib; {
description = "A Qt IMAP e-mail client"; description = "A Qt IMAP e-mail client";
homepage = "http://trojita.flaska.net/"; homepage = "http://trojita.flaska.net/";
license = with licenses; [ gpl2 gpl3 ]; license = with licenses; [ gpl2 gpl3 ];
maintainers = with maintainers; [ ehmry ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }