mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
60f5a3c18d
ocamlPackages.junit_ounit: init 2.0.2 ocamlPackages.junit_alcotest: init 2.0.2
15 lines
204 B
Nix
15 lines
204 B
Nix
{ buildDunePackage, junit, ounit }:
|
|
|
|
buildDunePackage ({
|
|
pname = "junit_ounit";
|
|
|
|
inherit (junit) src version meta useDune2;
|
|
|
|
propagatedBuildInputs = [
|
|
junit
|
|
ounit
|
|
];
|
|
|
|
doCheck = true;
|
|
})
|