nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix
sternenseemann e3936ac9c1 ocamlPackages.irmin*: 2.1.0 → 2.2.0
source now inherit ppx_irmin instead of irmin, since we can test irmin
using ppx_irmin and this way we avoid circular dependencies.
2020-06-30 17:18:33 +02:00

18 lines
314 B
Nix

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