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.

16 lines
216 B
Nix
Raw Normal View History

{ buildDunePackage, junit, ounit }:
buildDunePackage ({
pname = "junit_ounit";
2023-04-10 12:14:41 +00:00
inherit (junit) src version meta;
duneVersion = "3";
propagatedBuildInputs = [
junit
ounit
];
doCheck = true;
})