depot/third_party/nixpkgs/pkgs/development/ocaml-modules/junit/ounit.nix

15 lines
204 B
Nix
Raw Normal View History

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