about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix
blob: 4e2ccce7166361e780ebc28ebd4f3ce7ab66d50a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ buildDunePackage, irmin, ppx_irmin, mtime, astring, fmt, jsonm, logs, lwt
, metrics-unix, ocaml-syntax-shims, cmdliner, metrics, alcotest-lwt
, hex, vector
}:

buildDunePackage {

  pname = "irmin-test";

  inherit (irmin) version src strictDeps;
  duneVersion = "3";

  nativeBuildInputs = [ ppx_irmin ];

  propagatedBuildInputs = [
    irmin
    ppx_irmin
    alcotest-lwt
    mtime
    astring
    fmt
    jsonm
    logs
    lwt
    metrics-unix
    ocaml-syntax-shims
    cmdliner
    metrics
  ];

  checkInputs = [ hex vector ];

  meta = irmin.meta // {
    description = "Irmin test suite";
  };

}