summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/base64/default.nix
blob: 0638e50566e5230ade7f248eb23a82f545a71a16 (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
38
39
{
  lib,
  fetchurl,
  buildDunePackage,
  ocaml,
  findlib,
  alcotest,
  bos,
  rresult,
}:

buildDunePackage (finalAttrs: {
  pname = "base64";
  version = "3.5.2";

  minimalOCamlVersion = "4.07";

  src = fetchurl {
    url = "https://github.com/mirage/ocaml-base64/releases/download/v${finalAttrs.version}/base64-${finalAttrs.version}.tbz";
    hash = "sha256-s/XOMBqnLHAy75C+IzLXL/OWKSLADuKuxryt4Yei9Zs=";
  };

  nativeBuildInputs = [ findlib ];

  # otherwise fmt breaks evaluation
  doCheck = lib.versionAtLeast ocaml.version "4.08";
  checkInputs = [
    alcotest
    bos
    rresult
  ];

  meta = {
    homepage = "https://github.com/mirage/ocaml-base64";
    description = "Base64 encoding and decoding in OCaml";
    license = lib.licenses.isc;
    maintainers = with lib.maintainers; [ vbgl ];
  };
})