about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mrmime/default.nix
blob: a5c2a68ee47b0a0e6ac385ef5f156a6e42b99ba1 (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
{ afl-persistent
, alcotest
, angstrom
, base64
, bigarray-compat
, bigarray-overlap
, bigstringaf
, buildDunePackage
, emile
, fetchzip
, fmt
, fpath
, hxd
, ipaddr
, jsonm
, ke
, lib
, mirage-crypto-rng
, 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";
  };

  useDune2 = true;

  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
  ];

  checkInputs = [
    alcotest
    hxd
    jsonm
  ];
  doCheck = true;

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