1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/mailreaders/trojita/default.nix

60 lines
947 B
Nix
Raw Normal View History

2019-09-12 09:59:14 +01:00
{ akonadi-contacts
2016-06-21 13:24:45 +01:00
, cmake
2019-09-12 09:59:14 +01:00
, fetchgit
2019-09-02 11:38:01 +01:00
, gnupg
2019-09-12 09:59:14 +01:00
, gpgme
, kcontacts
2019-09-02 11:38:01 +01:00
, kf5gpgmepp
2019-09-12 09:59:14 +01:00
, lib
, libsecret
2019-09-12 09:59:14 +01:00
, mimetic
, mkDerivation
, pkgconfig
, qgpgme
2016-06-21 13:24:45 +01:00
, qtbase
2019-09-12 09:59:14 +01:00
, qtkeychain
2018-11-19 09:33:50 +00:00
, qttools
2019-09-12 09:59:14 +01:00
, qtwebkit
2016-06-21 13:24:45 +01:00
}:
2017-05-17 20:26:11 +01:00
mkDerivation rec {
pname = "trojita";
2019-09-12 09:59:14 +01:00
version = "0.7.20190618";
2016-06-21 13:24:45 +01:00
2019-09-12 09:59:14 +01:00
src = fetchgit {
url = "https://anongit.kde.org/trojita.git";
rev = "90b417b131853553c94ff93aef62abaf301aa8f1";
sha256 = "0xpxq5bzqaa68lkz90wima5q2m0mdcn0rvnigb66lylb4n20mnql";
2016-06-21 13:24:45 +01:00
};
buildInputs = [
2019-09-12 09:59:14 +01:00
akonadi-contacts
gpgme
kcontacts
libsecret
2019-09-12 09:59:14 +01:00
mimetic
qgpgme
2016-06-21 13:24:45 +01:00
qtbase
2019-09-12 09:59:14 +01:00
qtkeychain
2016-06-21 13:24:45 +01:00
qtwebkit
2019-09-02 11:38:01 +01:00
mimetic
kf5gpgmepp
2016-06-21 13:24:45 +01:00
];
nativeBuildInputs = [
2017-05-17 20:26:11 +01:00
cmake
2019-09-12 09:59:14 +01:00
pkgconfig
2018-11-19 09:33:50 +00:00
qttools
2019-09-02 11:38:01 +01:00
gnupg
2016-06-21 13:24:45 +01:00
];
2017-05-17 20:26:11 +01:00
meta = with lib; {
2016-06-21 13:24:45 +01:00
description = "A Qt IMAP e-mail client";
2019-09-12 09:59:14 +01:00
homepage = "http://trojita.flaska.net/";
2017-05-17 20:26:11 +01:00
license = with licenses; [ gpl2 gpl3 ];
2019-09-02 11:38:01 +01:00
maintainers = with maintainers; [ ehmry ];
2017-05-17 20:26:11 +01:00
platforms = platforms.linux;
2016-06-21 13:24:45 +01:00
};
2019-09-02 11:38:01 +01:00
2016-06-21 13:24:45 +01:00
}