nixpkgs/pkgs/development/ocaml-modules/irmin/default.nix

36 lines
594 B
Nix
Raw Normal View History

{ lib, buildDunePackage
2019-12-09 10:29:01 +00:00
, astring, base64, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
, repr, ppx_irmin, bheap
2019-12-09 10:29:01 +00:00
}:
buildDunePackage {
2019-12-09 10:29:01 +00:00
pname = "irmin";
inherit (ppx_irmin) src version;
2019-12-09 10:29:01 +00:00
useDune2 = true;
minimumOCamlVersion = "4.07";
2019-12-09 10:29:01 +00:00
propagatedBuildInputs = [
astring
base64
digestif
fmt
jsonm
logs
ocaml_lwt
ocamlgraph
uri
repr
bheap
ppx_irmin
];
2019-12-09 10:29:01 +00:00
# circular dependency on irmin-mem
doCheck = false;
2019-12-09 10:29:01 +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";
};
}