summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/pecu/default.nix
blob: 0059bbdec3ce54e8cc8b5ad577ddd8293fd5ef1b (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
{ lib, buildDunePackage, ocaml, fetchurl, fmt, alcotest }:

buildDunePackage rec {
  pname = "pecu";
  version = "0.5";

  useDune2 = true;

  minimumOCamlVersion = "4.03";

  src = fetchurl {
    url = "https://github.com/mirage/pecu/releases/download/v0.5/pecu-v0.5.tbz";
    sha256 = "713753cd6ba3f4609a26d94576484e83ffef7de5f2208a2993576a1b22f0e0e7";
  };

  # fmt availability
  doCheck = lib.versionAtLeast ocaml.version "4.05";
  checkInputs = [ fmt alcotest ];

  meta = with lib; {
    description = "Encoder/Decoder of Quoted-Printable (RFC2045 & RFC2047)";
    license = licenses.mit;
    homepage = "https://github.com/mirage/pecu";
    maintainers = [ maintainers.sternenseemann ];
  };
}