summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/mrmime/default.nix
blob: 54f137aecd8f37b2959e12c04e6a7c0681641e61 (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
{ afl-persistent
, alcotest
, angstrom
, base64
, bigarray-compat
, bigarray-overlap
, bigstringaf
, buildDunePackage
, cmdliner
, emile
, fetchzip
, fmt
, fpath
, hxd
, ipaddr
, jsonm
, ke
, lib
, mirage-crypto-rng
, ocaml
, pecu
, prettym
, ptime
, rosetta
, rresult
, unstrctrd
, uutf
}:

buildDunePackage rec {
  pname = "mrmime";
  version = "0.5.0";

  src = fetchzip {
    url = "https://github.com/mirage/mrmime/releases/download/v${version}/mrmime-v${version}.tbz";
    sha256 = "14k67v0b39b8jq3ny2ymi8g8sqx2gd81mlzsjphdzdqnlx6fk716";
  };

  duneVersion = "3";

  buildInputs = [ cmdliner hxd ];

  propagatedBuildInputs = [
    angstrom
    base64
    emile
    fmt
    ipaddr
    ke
    pecu
    prettym
    ptime
    rosetta
    rresult
    unstrctrd
    uutf
    afl-persistent
    bigarray-compat
    bigarray-overlap
    bigstringaf
    fpath
    mirage-crypto-rng
  ];

  nativeCheckInputs = [
    alcotest
    jsonm
  ];
  doCheck = lib.versionOlder ocaml.version "5.0";

  meta = {
    description = "Parser and generator of mail in OCaml";
    homepage = "https://github.com/mirage/mrmime";
    license = lib.licenses.mit;
    maintainers = [ ];
    mainProgram = "mrmime.generate";
  };
}