ocamlPackages.qcheck-ounit: init at 0.15

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

View File

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

View File

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