3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/mailreaders/trojita/default.nix

51 lines
815 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
, gpgme
, kcontacts
, lib
, 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
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
];
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
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 ];
platforms = platforms.linux;
2016-06-21 13:24:45 +01:00
};
}