ocamlPackages.qcheck-multicoretests-util: init at 0.2

This commit is contained in:
Vincent Laporte
2023-08-21 07:51:17 +02:00
parent 8ca5a5a768
commit aa47da4c2c
2 changed files with 30 additions and 0 deletions
@@ -0,0 +1,28 @@
{ lib, fetchFromGitHub, buildDunePackage
, qcheck-core
}:
buildDunePackage rec {
pname = "qcheck-multicoretests-util";
version = "0.2";
src = fetchFromGitHub {
owner = "ocaml-multicore";
repo = "multicoretests";
rev = version;
hash = "sha256-U1ZqfWMwpAvbPq5yp2U9YTFklT4MypzTSfNvcKJfaYE=";
};
propagatedBuildInputs = [ qcheck-core ];
doCheck = true;
minimalOCamlVersion = "4.12";
meta = {
homepage = "https://github.com/ocaml-multicore/multicoretests";
description = "Utility functions for property-based testing of multicore programs";
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.vbgl ];
};
}
+2
View File
@@ -1464,6 +1464,8 @@ let
qcheck-core = callPackage ../development/ocaml-modules/qcheck/core.nix { };
qcheck-multicoretests-util = callPackage ../development/ocaml-modules/qcheck/multicoretests-util.nix { };
qcheck-ounit = callPackage ../development/ocaml-modules/qcheck/ounit.nix { };
qtest = callPackage ../development/ocaml-modules/qtest { };