1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 08:31:59 +00:00
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";
};
}