nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix

18 lines
314 B
Nix
Raw Normal View History

{ buildDunePackage, alcotest, cmdliner, irmin, metrics-unix, mtime }:
buildDunePackage {
pname = "irmin-test";
inherit (irmin) version src;
useDune2 = true;
propagatedBuildInputs = [ alcotest cmdliner irmin metrics-unix mtime ];
meta = irmin.meta // {
description = "Irmin test suite";
};
}