summary refs log tree commit diff
path: root/pkgs/tools/networking/mailctl/default.nix
blob: 873d6f370939e8ad2aca28c6d36df9e3661e2b60 (plain) (blame)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{ mkDerivation
, fetchFromSourcehut
, aeson
, base
, bytestring
, containers
, directory
, hsyslog
, http-conduit
, lib
, network-uri
, optparse-applicative
, pretty-simple
, process
, template-haskell
, text
, time
, twain
, utf8-string
, warp
, yaml
}:
mkDerivation rec {
  pname = "mailctl";
  version = "0.8.8";

  src = fetchFromSourcehut {
    owner = "~petrus";
    repo = "mailctl";
    rev = version;
    hash = "sha256-aFt6y2DzreROLcOLU8ynnSSVQW840T5wFqSRdSODQX4=";
  };

  isLibrary = true;
  isExecutable = true;

  libraryHaskellDepends = [
    aeson
    base
    bytestring
    containers
    directory
    hsyslog
    http-conduit
    network-uri
    optparse-applicative
    pretty-simple
    process
    template-haskell
    text
    time
    twain
    utf8-string
    warp
    yaml
  ];

  executableHaskellDepends = [
    aeson
    base
    bytestring
    containers
    directory
    hsyslog
    http-conduit
    network-uri
    optparse-applicative
    pretty-simple
    process
    template-haskell
    text
    time
    twain
    utf8-string
    warp
    yaml
  ];

  description = "OAuth2 tool for mail clients";
  homepage = "https://sr.ht/~petrus/mailctl/";
  changelog = "https://git.sr.ht/~petrus/mailctl/refs/${version}";
  license = lib.licenses.bsd3;
  maintainers = with lib.maintainers; [ aidalgol ];
  mainProgram = "mailctl";
}