2021-02-16 17:04:54 +00:00
|
|
|
{ lib, buildDunePackage
|
2021-02-22 21:28:39 +00:00
|
|
|
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
|
2022-10-21 18:38:19 +00:00
|
|
|
, repr, ppx_irmin, bheap, uutf, mtime, lwt, optint
|
|
|
|
, vector, hex, alcotest, qcheck-alcotest
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
buildDunePackage {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "irmin";
|
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
inherit (ppx_irmin) src version;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
minimalOCamlVersion = "4.10";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-16 17:04:54 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
astring
|
2022-10-21 18:38:19 +00:00
|
|
|
bheap
|
2021-02-16 17:04:54 +00:00
|
|
|
digestif
|
|
|
|
fmt
|
|
|
|
jsonm
|
|
|
|
logs
|
2022-10-21 18:38:19 +00:00
|
|
|
lwt
|
|
|
|
mtime
|
2021-02-16 17:04:54 +00:00
|
|
|
ocamlgraph
|
2022-10-21 18:38:19 +00:00
|
|
|
optint
|
2021-02-16 17:04:54 +00:00
|
|
|
ppx_irmin
|
2022-10-21 18:38:19 +00:00
|
|
|
repr
|
|
|
|
uri
|
2022-01-25 03:21:06 +00:00
|
|
|
uutf
|
2021-02-16 17:04:54 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [
|
2022-10-21 18:38:19 +00:00
|
|
|
vector
|
|
|
|
hex
|
|
|
|
alcotest
|
|
|
|
qcheck-alcotest
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
meta = ppx_irmin.meta // {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Distributed database built on the same principles as Git";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|