aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/qcheck/alcotest.nix
blob: aebe6bd95a851a3fd55f8b3ca61ae9ea40a15814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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";
  };
}