1{ 2 buildDunePackage, 3 lib, 4 ocaml, 5 junit, 6 alcotest, 7}: 8 9buildDunePackage { 10 pname = "junit_alcotest"; 11 12 inherit (junit) src version meta; 13 14 propagatedBuildInputs = [ 15 junit 16 alcotest 17 ]; 18 19 doCheck = lib.versionAtLeast ocaml.version "4.12"; 20}