Files
Wolfgang Walther 91a8fee3aa treewide: remove redundant parentheses
Auto-fixed by nixf-diagnose.
2025-10-05 10:52:03 +02:00

19 lines
202 B
Nix

{
buildDunePackage,
junit,
ounit2,
}:
buildDunePackage {
pname = "junit_ounit";
inherit (junit) src version meta;
propagatedBuildInputs = [
junit
ounit2
];
doCheck = true;
}