0eeabdeb66
GitOrigin-RevId: c07b471b52be8fbc49a7dc194e9b37a6e19ee04d
35 lines
590 B
Nix
35 lines
590 B
Nix
{ lib, buildDunePackage
|
|
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
|
|
, repr, ppx_irmin, bheap, uutf
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "irmin";
|
|
|
|
inherit (ppx_irmin) src version;
|
|
|
|
useDune2 = true;
|
|
minimumOCamlVersion = "4.08";
|
|
|
|
propagatedBuildInputs = [
|
|
astring
|
|
digestif
|
|
fmt
|
|
jsonm
|
|
logs
|
|
ocaml_lwt
|
|
ocamlgraph
|
|
uri
|
|
repr
|
|
bheap
|
|
ppx_irmin
|
|
uutf
|
|
];
|
|
|
|
# circular dependency on irmin-mem
|
|
doCheck = false;
|
|
|
|
meta = ppx_irmin.meta // {
|
|
description = "A distributed database built on the same principles as Git";
|
|
};
|
|
}
|