1{ buildDunePackage, junit, ounit }: 2 3buildDunePackage ({ 4 pname = "junit_ounit"; 5 6 inherit (junit) src version meta; 7 duneVersion = "3"; 8 9 propagatedBuildInputs = [ 10 junit 11 ounit 12 ]; 13 14 doCheck = true; 15})