86f042a55b
GitOrigin-RevId: c7d0dbe094c988209edac801eb2a0cc21aa498d8
34 lines
575 B
Nix
34 lines
575 B
Nix
{ 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";
|
|
};
|
|
}
|