nixpkgs/pkgs/development/ocaml-modules/junit/ounit.nix
2023-04-11 06:36:04 +02:00

16 lines
216 B
Nix

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