about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/data-encoding/default.nix
blob: f94abebbcbdf007ae903699f761cbdfcb8622ea2 (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
{ lib
, fetchFromGitLab
, buildDunePackage
, ppx_hash
, bigstringaf
, either
, ezjsonm
, zarith
, zarith_stubs_js ? null
, hex
, json-data-encoding
, json-data-encoding-bson
, alcotest
, crowbar
, ppx_expect
}:

buildDunePackage rec {
  pname = "data-encoding";
  inherit (json-data-encoding) src version;

  minimalOCamlVersion = "4.10";

  propagatedBuildInputs = [
    bigstringaf
    either
    ezjsonm
    ppx_hash
    zarith
    zarith_stubs_js
    hex
    json-data-encoding
    json-data-encoding-bson
  ];

  buildInputs = [
    ppx_expect
  ];

  meta = {
    homepage = "https://gitlab.com/nomadic-labs/data-encoding";
    description = "Library of JSON and binary encoding combinators";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.ulrikstrid ];
  };
}