depot/third_party/nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

37 lines
629 B
Nix

{ buildDunePackage, irmin, ppx_irmin, mtime, astring, fmt, jsonm, logs, lwt
, metrics-unix, ocaml-syntax-shims, cmdliner, metrics, alcotest-lwt
, hex, vector, qcheck-alcotest
}:
buildDunePackage {
pname = "irmin-test";
inherit (irmin) version src;
nativeBuildInputs = [ ppx_irmin ];
propagatedBuildInputs = [
irmin
ppx_irmin
alcotest-lwt
mtime
astring
fmt
jsonm
logs
lwt
metrics-unix
ocaml-syntax-shims
cmdliner
metrics
];
doCheck = true;
checkInputs = [ hex qcheck-alcotest vector ];
meta = irmin.meta // {
description = "Irmin test suite";
};
}