fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / development / ocaml-modules / irmin / default.nix
blob2abcfc7d21e53b8cbf4e49d7b68d9956dbcb8cde
2   buildDunePackage,
3   astring,
4   digestif,
5   fmt,
6   jsonm,
7   logs,
8   ocamlgraph,
9   uri,
10   repr,
11   ppx_irmin,
12   bheap,
13   uutf,
14   mtime,
15   lwt,
16   optint,
17   vector,
18   hex,
19   alcotest,
20   qcheck-alcotest,
23 buildDunePackage {
24   pname = "irmin";
26   inherit (ppx_irmin) src version;
28   minimalOCamlVersion = "4.10";
30   propagatedBuildInputs = [
31     astring
32     bheap
33     digestif
34     fmt
35     jsonm
36     logs
37     lwt
38     mtime
39     ocamlgraph
40     optint
41     ppx_irmin
42     repr
43     uri
44     uutf
45   ];
47   checkInputs = [
48     vector
49     hex
50     alcotest
51     qcheck-alcotest
52   ];
54   doCheck = true;
56   meta = ppx_irmin.meta // {
57     description = "Distributed database built on the same principles as Git";
58   };