ocamlPackages.qcheck-alcotest: init at 0.15

This commit is contained in:
Vincent Laporte 2020-09-13 18:03:18 +02:00 committed by Vincent Laporte
parent 79a0130dbd
commit 491e809867
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ buildDunePackage, qcheck-core, alcotest }:
buildDunePackage {
pname = "qcheck-alcotest";
inherit (qcheck-core) version src;
propagatedBuildInputs = [ qcheck-core alcotest ];
meta = qcheck-core.meta // {
description = "Alcotest backend for qcheck";
};
}

View file

@ -886,6 +886,8 @@ let
pycaml = callPackage ../development/ocaml-modules/pycaml { };
qcheck-alcotest = callPackage ../development/ocaml-modules/qcheck/alcotest.nix { };
qcheck-core = callPackage ../development/ocaml-modules/qcheck/core.nix { };
qcheck-ounit = callPackage ../development/ocaml-modules/qcheck/ounit.nix { };