aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix
{ buildDunePackage, qcheck-core, ounit }:

buildDunePackage {
  pname = "qcheck-ounit";

  inherit (qcheck-core) version useDune2 src;

  propagatedBuildInputs = [ qcheck-core ounit ];

  meta = qcheck-core.meta // {
    description = "OUnit backend for qcheck";
  };

}