19 lines
223 B
Nix
19 lines
223 B
Nix
{
|
|
buildDunePackage,
|
|
junit,
|
|
ounit,
|
|
}:
|
|
|
|
buildDunePackage ({
|
|
pname = "junit_ounit";
|
|
|
|
inherit (junit) src version meta;
|
|
duneVersion = "3";
|
|
|
|
propagatedBuildInputs = [
|
|
junit
|
|
ounit
|
|
];
|
|
|
|
doCheck = true;
|
|
})
|