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

buildDunePackage {
  pname = "qcheck-alcotest";

  inherit (qcheck-core) version useDune2 src;

  propagatedBuildInputs = [ qcheck-core alcotest ];

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