nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix
2019-12-09 17:02:11 +00:00

16 lines
294 B
Nix

{ 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";
};
}