a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
43 lines
702 B
Nix
43 lines
702 B
Nix
{ lib, buildDunePackage
|
|
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
|
|
, repr, ppx_irmin, bheap, uutf, mtime, lwt, optint
|
|
, vector, hex, alcotest, qcheck-alcotest
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "irmin";
|
|
|
|
inherit (ppx_irmin) src version strictDeps;
|
|
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
propagatedBuildInputs = [
|
|
astring
|
|
bheap
|
|
digestif
|
|
fmt
|
|
jsonm
|
|
logs
|
|
lwt
|
|
mtime
|
|
ocamlgraph
|
|
optint
|
|
ppx_irmin
|
|
repr
|
|
uri
|
|
uutf
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
vector
|
|
hex
|
|
alcotest
|
|
qcheck-alcotest
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = ppx_irmin.meta // {
|
|
description = "A distributed database built on the same principles as Git";
|
|
};
|
|
}
|