about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix
blob: 90141d925e6f86164165548aad4f593005a01846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ buildDunePackage
, alcotest, cmdliner, irmin, metrics-unix, mtime, irmin-layers
}:

buildDunePackage {

  pname = "irmin-test";

  inherit (irmin) version src;

  useDune2 = true;

  propagatedBuildInputs = [
    alcotest cmdliner irmin metrics-unix mtime irmin-layers
  ];

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

}