nixpkgs/pkgs/development/ocaml-modules/irmin/containers.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

28 lines
481 B
Nix

{ buildDunePackage
, irmin, irmin-fs, ppx_irmin, lwt, mtime
, alcotest, alcotest-lwt, cacert
}:
buildDunePackage {
pname = "irmin-containers";
inherit (ppx_irmin) src version strictDeps;
nativeBuildInputs = [
ppx_irmin
];
propagatedBuildInputs = [
irmin irmin-fs ppx_irmin lwt mtime
];
doCheck = true;
nativeCheckInputs = [
alcotest alcotest-lwt cacert
];
meta = ppx_irmin.meta // {
description = "Mergeable Irmin data structures";
};
}