biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / irmin / test.nix
bloba0e206cade72097b82e5b4095c86795b8de7f5b5
1 { buildDunePackage, irmin, ppx_irmin, mtime, astring, fmt, jsonm, logs, lwt
2 , metrics-unix, ocaml-syntax-shims, cmdliner, metrics, alcotest-lwt
3 , hex, vector, qcheck-alcotest
4 }:
6 buildDunePackage {
8   pname = "irmin-test";
10   inherit (irmin) version src;
12   nativeBuildInputs = [ ppx_irmin ];
14   propagatedBuildInputs = [
15     irmin
16     ppx_irmin
17     alcotest-lwt
18     mtime
19     astring
20     fmt
21     jsonm
22     logs
23     lwt
24     metrics-unix
25     ocaml-syntax-shims
26     cmdliner
27     metrics
28   ];
30   doCheck = true;
31   checkInputs = [ hex qcheck-alcotest vector ];
33   meta = irmin.meta // {
34     description = "Irmin test suite";
35   };