lol

Merge pull request #223606 from superherointj/reason-native-qcheck-rely-remove

ocamlPackages.reason-native.qcheck-rely: remove

authored by

Ulrik Strid and committed by
GitHub
0ffeb651 d6054a9d

-22
-1
pkgs/development/ocaml-modules/reason-native/default.nix
··· 36 36 fp = generic ./fp.nix; 37 37 pastel = generic ./pastel.nix; 38 38 pastel-console = generic ./pastel-console.nix; 39 - qcheck-rely = generic ./qcheck-rely.nix; 40 39 refmterr = generic ./refmterr.nix; 41 40 rely = generic ./rely.nix; 42 41 rely-junit-reporter = generic ./rely-junit-reporter.nix;
-21
pkgs/development/ocaml-modules/reason-native/qcheck-rely.nix
··· 1 - { qcheck-core, reason, console, rely, ... }: 2 - 3 - { 4 - pname = "qcheck-rely"; 5 - 6 - nativeBuildInputs = [ 7 - reason 8 - ]; 9 - 10 - propagatedBuildInputs = [ 11 - qcheck-core 12 - console 13 - rely 14 - ]; 15 - 16 - meta = { 17 - 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'"; 18 - downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/qcheck-rely"; 19 - broken = true; 20 - }; 21 - }