depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

43 lines
683 B
Nix

{ lib, buildDunePackage
, astring, digestif, fmt, jsonm, logs, ocaml_lwt, ocamlgraph, uri
, repr, ppx_irmin, bheap, uutf, mtime, lwt, optint
, vector, hex, alcotest, qcheck-alcotest
}:
buildDunePackage {
pname = "irmin";
inherit (ppx_irmin) src version;
minimalOCamlVersion = "4.10";
propagatedBuildInputs = [
astring
bheap
digestif
fmt
jsonm
logs
lwt
mtime
ocamlgraph
optint
ppx_irmin
repr
uri
uutf
];
checkInputs = [
vector
hex
alcotest
qcheck-alcotest
];
doCheck = true;
meta = ppx_irmin.meta // {
description = "Distributed database built on the same principles as Git";
};
}