summary refs log blame commit diff
path: root/pkgs/development/ocaml-modules/qcheck/alcotest.nix
blob: aebe6bd95a851a3fd55f8b3ca61ae9ea40a15814 (plain) (tree)
1
2
3
4
5
6




                                            
                                             






                                                   
{ 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";
  };
}