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-01-23 20:24:16 +00:00
|
|
|
, repr, ppx_irmin, bheap, uutf
|
2019-12-09 10:29:01 +00:00
|
|
|
}:
|
|
|
|
|
2020-06-29 13:28:45 +01:00
|
|
|
buildDunePackage {
|
2019-12-09 10:29:01 +00:00
|
|
|
pname = "irmin";
|
|
|
|
|
2020-06-29 13:28:45 +01:00
|
|
|
inherit (ppx_irmin) src version;
|
2019-12-09 10:29:01 +00:00
|
|
|
|
2020-06-29 13:28:45 +01:00
|
|
|
useDune2 = true;
|
2022-01-23 20:24:16 +00:00
|
|
|
minimumOCamlVersion = "4.08";
|
2019-12-09 10:29:01 +00:00
|
|
|
|
2021-02-16 07:39:46 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
astring
|
|
|
|
digestif
|
|
|
|
fmt
|
|
|
|
jsonm
|
|
|
|
logs
|
|
|
|
ocaml_lwt
|
|
|
|
ocamlgraph
|
|
|
|
uri
|
|
|
|
repr
|
|
|
|
bheap
|
|
|
|
ppx_irmin
|
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
|
|
|
|
2021-02-16 07:39:46 +00:00
|
|
|
# circular dependency on irmin-mem
|
|
|
|
doCheck = false;
|
2019-12-09 10:29:01 +00:00
|
|
|
|
2020-06-29 13:28:45 +01:00
|
|
|
meta = ppx_irmin.meta // {
|
2019-12-09 10:29:01 +00:00
|
|
|
description = "A distributed database built on the same principles as Git";
|
|
|
|
};
|
|
|
|
}
|