nixpkgs/pkgs/applications/networking/mailreaders/trojita/default.nix

37 lines
614 B
Nix
Raw Normal View History

2017-05-17 19:26:11 +00:00
{ mkDerivation
2016-06-21 12:24:45 +00:00
, lib
, fetchgit
, cmake
, qtbase
, qtwebkit
}:
2017-05-17 19:26:11 +00:00
mkDerivation rec {
2016-06-21 12:24:45 +00:00
name = "trojita-${version}";
version = "0.7";
src = fetchgit {
url = "https://anongit.kde.org/trojita.git";
rev = "065d527c63e8e4a3ca0df73994f848b52e14ed58";
sha256 = "1zlwhir33hha2p3l08wnb4njnfdg69j88ycf1fa4q3x86qm3r7hw";
};
buildInputs = [
qtbase
qtwebkit
];
nativeBuildInputs = [
2017-05-17 19:26:11 +00:00
cmake
2016-06-21 12:24:45 +00:00
];
2017-05-17 19:26:11 +00:00
meta = with lib; {
2016-06-21 12:24:45 +00:00
description = "A Qt IMAP e-mail client";
homepage = http://trojita.flaska.net/;
2017-05-17 19:26:11 +00:00
license = with licenses; [ gpl2 gpl3 ];
platforms = platforms.linux;
2016-06-21 12:24:45 +00:00
};
}