From a5ba4a2ad46b6807fb74a22d2ddbf9965f195bdd Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Tue, 28 Mar 2023 15:01:55 -0300 Subject: [PATCH] ocamlPackages.reason-native.qcheck-rely: remove --- .../ocaml-modules/reason-native/default.nix | 1 - .../reason-native/qcheck-rely.nix | 21 ------------------- 2 files changed, 22 deletions(-) delete mode 100644 pkgs/development/ocaml-modules/reason-native/qcheck-rely.nix 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; - }; -}