Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / ocaml-modules / qcheck / ounit.nix
blob62b082f48fb2e10eba516228a2ed0be7e382ca39
1 { buildDunePackage, qcheck-core, ounit }:
3 buildDunePackage {
4   pname = "qcheck-ounit";
6   inherit (qcheck-core) version useDune2 src;
8   propagatedBuildInputs = [ qcheck-core ounit ];
10   meta = qcheck-core.meta // {
11     description = "OUnit backend for qcheck";
12   };