depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

43 lines
696 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 strictDeps;
minimalOCamlVersion = "4.08";
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 = "A distributed database built on the same principles as Git";
};
}