mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-04 03:07:02 +00:00
14 lines
204 B
Nix
14 lines
204 B
Nix
{ buildDunePackage, junit, ounit }:
|
|
|
|
buildDunePackage ({
|
|
pname = "junit_ounit";
|
|
|
|
inherit (junit) src version meta useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
junit
|
|
ounit
|
|
];
|
|
|
|
doCheck = true;
|
|
})
|