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

16 lines
216 B
Nix
Raw Normal View History

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