summaryrefslogtreecommitdiff
path: root/pkgs/development/ocaml-modules/qcheck/alcotest.nix
blob: 9ddcdcc1d5e5415c729fb3f80dd0e51323565b89 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  buildDunePackage,
  qcheck-core,
  alcotest,
}:

buildDunePackage {
  pname = "qcheck-alcotest";

  inherit (qcheck-core) version src patches;

  duneVersion = "3";

  propagatedBuildInputs = [
    qcheck-core
    alcotest
  ];

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