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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;
})