e3936ac9c1
source now inherit ppx_irmin instead of irmin, since we can test irmin using ppx_irmin and this way we avoid circular dependencies.
18 lines
314 B
Nix
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";
|
|
};
|
|
|
|
}
|