nixpkgs/pkgs/development/ocaml-modules/irmin/test.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

37 lines
595 B
Nix

{ buildDunePackage, irmin, ppx_irmin, mtime, astring, fmt, jsonm, logs, lwt
, metrics-unix, ocaml-syntax-shims, cmdliner, metrics, alcotest-lwt
, hex, vector
}:
buildDunePackage {
pname = "irmin-test";
inherit (irmin) version src strictDeps;
nativeBuildInputs = [ ppx_irmin ];
propagatedBuildInputs = [
irmin
ppx_irmin
alcotest-lwt
mtime
astring
fmt
jsonm
logs
lwt
metrics-unix
ocaml-syntax-shims
cmdliner
metrics
];
nativeCheckInputs = [ hex vector ];
meta = irmin.meta // {
description = "Irmin test suite";
};
}