summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/irmin/default.nix
blob: fe13377b3c2b10cfc250048fd267ed0d7a5c81a0 (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
{ lib, buildDunePackage
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
, repr, ppx_irmin, bheap
}:

buildDunePackage {
  pname = "irmin";

  inherit (ppx_irmin) src version;

  useDune2 = true;
  minimumOCamlVersion = "4.07";

  propagatedBuildInputs = [
    astring
    digestif
    fmt
    jsonm
    logs
    ocaml_lwt
    ocamlgraph
    uri
    repr
    bheap
    ppx_irmin
  ];

  # circular dependency on irmin-mem
  doCheck = false;

  meta = ppx_irmin.meta // {
    description = "A distributed database built on the same principles as Git";
  };
}