stdenv: fix documentation for stripAllFlags and stripDebugFlags (#352127)
[NixPkgs.git] / pkgs / development / ocaml-modules / reason-native / qcheck-rely.nix
blobdf376cf7b3cec798646b61e971127f0e36e2faf6
2   lib,
3   buildDunePackage,
4   qcheck-core,
5   reason,
6   console,
7   rely,
8   src,
9 }:
11 buildDunePackage {
12   inherit src;
14   pname = "qcheck-rely";
15   version = "1.0.2-unstable-2024-05-07";
17   nativeBuildInputs = [
18     reason
19   ];
21   propagatedBuildInputs = [
22     qcheck-core
23     console
24     rely
25   ];
27   meta = {
28     description = "Library containing custom Rely matchers allowing for easily using QCheck with Rely. QCheck is a 'QuickCheck inspired property-based testing for OCaml, and combinators to generate random values to run tests on'";
29     downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/qcheck-rely";
30     license = lib.licenses.mit;
31     maintainers = [ ];
32   };