2021-02-16 07:39:46 +00:00
|
|
|
{ lib, buildDunePackage
|
2021-02-19 21:19:24 +00:00
|
|
|
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
|
2022-10-11 06:50:54 +00:00
|
|
|
, repr, ppx_irmin, bheap, uutf, mtime, lwt, optint
|
|
|
|
, vector, hex, alcotest, qcheck-alcotest
|
2019-12-09 10:29:01 +00:00
|
|
|
}:
|
|
|
|
|
2020-06-29 12:28:45 +00:00
|
|
|
buildDunePackage {
|
2019-12-09 10:29:01 +00:00
|
|
|
pname = "irmin";
|
|
|
|
|
2022-10-11 06:50:54 +00:00
|
|
|
inherit (ppx_irmin) src version strictDeps;
|
2019-12-09 10:29:01 +00:00
|
|
|
|
2023-02-04 20:27:33 +00:00
|
|
|
minimalOCamlVersion = "4.10";
|
|
|
|
duneVersion = "3";
|
2019-12-09 10:29:01 +00:00
|
|
|
|
2021-02-16 07:39:46 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
astring
|
2022-10-11 06:50:54 +00:00
|
|
|
bheap
|
2021-02-16 07:39:46 +00:00
|
|
|
digestif
|
|
|
|
fmt
|
|
|
|
jsonm
|
|
|
|
logs
|
2022-10-11 06:50:54 +00:00
|
|
|
lwt
|
|
|
|
mtime
|
2021-02-16 07:39:46 +00:00
|
|
|
ocamlgraph
|
2022-10-11 06:50:54 +00:00
|
|
|
optint
|
2021-02-16 07:39:46 +00:00
|
|
|
ppx_irmin
|
2022-10-11 06:50:54 +00:00
|
|
|
repr
|
|
|
|
uri
|
2022-01-23 20:24:16 +00:00
|
|
|
uutf
|
2021-02-16 07:39:46 +00:00
|
|
|
];
|
2019-12-09 10:29:01 +00:00
|
|
|
|
2022-03-01 15:42:22 +00:00
|
|
|
checkInputs = [
|
2022-10-11 06:50:54 +00:00
|
|
|
vector
|
|
|
|
hex
|
|
|
|
alcotest
|
|
|
|
qcheck-alcotest
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
2019-12-09 10:29:01 +00:00
|
|
|
|
2020-06-29 12:28:45 +00:00
|
|
|
meta = ppx_irmin.meta // {
|
2019-12-09 10:29:01 +00:00
|
|
|
description = "A distributed database built on the same principles as Git";
|
|
|
|
};
|
|
|
|
}
|