diff --git a/pkgs/development/ocaml-modules/reason-native/default.nix b/pkgs/development/ocaml-modules/reason-native/default.nix index d20f994b832d..d54a1fd1322b 100644 --- a/pkgs/development/ocaml-modules/reason-native/default.nix +++ b/pkgs/development/ocaml-modules/reason-native/default.nix @@ -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; diff --git a/pkgs/development/ocaml-modules/reason-native/qcheck-rely.nix b/pkgs/development/ocaml-modules/reason-native/qcheck-rely.nix deleted file mode 100644 index 1250dc2d3a71..000000000000 --- a/pkgs/development/ocaml-modules/reason-native/qcheck-rely.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ 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; - }; -}