depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin/default.nix
Default email 29574b70c6 Project import generated by Copybara.
GitOrigin-RevId: 64b4617883844efe0cc20163e007ee636462eb18
2021-02-16 18:04:54 +01:00

35 lines
594 B
Nix

{ lib, buildDunePackage
, astring, base64, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
, repr, ppx_irmin, bheap
}:
buildDunePackage {
pname = "irmin";
inherit (ppx_irmin) src version;
useDune2 = true;
minimumOCamlVersion = "4.07";
propagatedBuildInputs = [
astring
base64
digestif
fmt
jsonm
logs
ocaml_lwt
ocamlgraph
uri
repr
bheap
ppx_irmin
];
# circular dependency on irmin-mem
doCheck = false;
meta = ppx_irmin.meta // {
description = "A distributed database built on the same principles as Git";
};
}