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