aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix
blob: 57e33e2db8a5e8d2a845383222eaa152e1c09876 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ buildDunePackage, alcotest, cmdliner, irmin, metrics-unix, mtime }:

buildDunePackage {

  pname = "irmin-test";

  inherit (irmin) version src;

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

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

}