Commit a5ba4a2a authored by superherointj's avatar superherointj
Browse files

ocamlPackages.reason-native.qcheck-rely: remove

parent 49079a13
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -36,7 +36,6 @@ in
    fp = generic ./fp.nix;
    pastel = generic ./pastel.nix;
    pastel-console = generic ./pastel-console.nix;
    qcheck-rely = generic ./qcheck-rely.nix;
    refmterr = generic ./refmterr.nix;
    rely = generic ./rely.nix;
    rely-junit-reporter = generic ./rely-junit-reporter.nix;
+0 −21
Original line number Diff line number Diff line
{ qcheck-core, reason, console, rely, ... }:

{
  pname = "qcheck-rely";

  nativeBuildInputs = [
    reason
  ];

  propagatedBuildInputs = [
    qcheck-core
    console
    rely
  ];

  meta = {
    description = "A 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'";
    downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/qcheck-rely";
    broken = true;
  };
}