2025-05-15 09:02:58 +02:00

21 lines
260 B
Nix

{
buildDunePackage,
lib,
ocaml,
junit,
alcotest,
}:
buildDunePackage {
pname = "junit_alcotest";
inherit (junit) src version meta;
propagatedBuildInputs = [
junit
alcotest
];
doCheck = lib.versionAtLeast ocaml.version "4.12";
}