Files
nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix
2025-11-04 18:45:33 +01:00

22 lines
281 B
Nix

{
buildDunePackage,
qcheck-core,
ounit2,
}:
buildDunePackage {
pname = "qcheck-ounit";
inherit (qcheck-core) version src;
propagatedBuildInputs = [
qcheck-core
ounit2
];
meta = qcheck-core.meta // {
description = "OUnit backend for qcheck";
};
}