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

38 lines
600 B
Nix
Raw Normal View History

2017-05-17 21:26:11 +02:00
{ mkDerivation
2016-06-21 14:24:45 +02:00
, lib
2018-11-19 10:33:50 +01:00
, fetchurl
2016-06-21 14:24:45 +02:00
, cmake
, qtbase
, qtwebkit
2018-11-19 10:33:50 +01:00
, qttools
2016-06-21 14:24:45 +02:00
}:
2017-05-17 21:26:11 +02:00
mkDerivation rec {
pname = "trojita";
2016-06-21 14:24:45 +02:00
version = "0.7";
2018-11-19 10:33:50 +01:00
src = fetchurl {
url = "mirror://sourceforge/trojita/trojita/${pname}-${version}.tar.xz";
2018-11-19 10:33:50 +01:00
sha256 = "1n9n07md23ny6asyw0xpih37vlwzp7vawbkprl7a1bqwfa0si3g0";
2016-06-21 14:24:45 +02:00
};
buildInputs = [
qtbase
qtwebkit
];
nativeBuildInputs = [
2017-05-17 21:26:11 +02:00
cmake
2018-11-19 10:33:50 +01:00
qttools
2016-06-21 14:24:45 +02:00
];
2017-05-17 21:26:11 +02:00
meta = with lib; {
2016-06-21 14:24:45 +02:00
description = "A Qt IMAP e-mail client";
homepage = http://trojita.flaska.net/;
2017-05-17 21:26:11 +02:00
license = with licenses; [ gpl2 gpl3 ];
platforms = platforms.linux;
2016-06-21 14:24:45 +02:00
};
}