aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/networking/mailreaders/trojita/default.nix
blob: 7f7296cd70064d5c123db1aed2182b812cc3ff6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ mkDerivation
, lib
, fetchurl
, cmake
, qtbase
, qtwebkit
, qttools
}:

mkDerivation rec {
  pname = "trojita";
  version = "0.7";

  src = fetchurl {
    url = "mirror://sourceforge/trojita/trojita/${pname}-${version}.tar.xz";
    sha256 = "1n9n07md23ny6asyw0xpih37vlwzp7vawbkprl7a1bqwfa0si3g0";
  };

  buildInputs = [
    qtbase
    qtwebkit
  ];

  nativeBuildInputs = [
    cmake
    qttools
  ];


  meta = with lib; {
    description = "A Qt IMAP e-mail client";
    homepage = http://trojita.flaska.net/;
    license = with licenses; [ gpl2 gpl3 ];
    platforms = platforms.linux;
  };

}