2021-06-04 09:07:49 +00:00
|
|
|
{ buildDunePackage, junit, ounit }:
|
|
|
|
|
|
|
|
buildDunePackage ({
|
|
|
|
pname = "junit_ounit";
|
|
|
|
|
2023-04-12 12:48:02 +00:00
|
|
|
inherit (junit) src version meta;
|
|
|
|
duneVersion = "3";
|
2021-06-04 09:07:49 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
junit
|
|
|
|
ounit
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
})
|