4922992a04
ocamlPackages.data-encoding: 0.7.1 → 1.0.1 ocamlPackages.index: 1.6.1 → 1.6.2 ocamlPackages.irmin: 3.7.2 → 3.9.0 ocamlPackages.irmin-http: remove at 3.7.2 ocamlPackages.mirage-kv: 4.0.1 → 6.1.1 ocamlPackages.terminal: 0.2.1 → 0.2.2
44 lines
685 B
Nix
44 lines
685 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;
|
|
|
|
minimalOCamlVersion = "4.10";
|
|
|
|
propagatedBuildInputs = [
|
|
astring
|
|
bheap
|
|
digestif
|
|
fmt
|
|
jsonm
|
|
logs
|
|
lwt
|
|
mtime
|
|
ocamlgraph
|
|
optint
|
|
ppx_irmin
|
|
repr
|
|
uri
|
|
uutf
|
|
];
|
|
|
|
checkInputs = [
|
|
vector
|
|
hex
|
|
alcotest
|
|
qcheck-alcotest
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = ppx_irmin.meta // {
|
|
description = "A distributed database built on the same principles as Git";
|
|
};
|
|
}
|