about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/qcheck
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-09-13 18:03:18 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-09-16 05:57:19 +0200
commit491e80986777b190b4ac2b285276793a4467c36c (patch)
treea910ead6e67273df996f3afa6767ec7ff78efd6b /pkgs/development/ocaml-modules/qcheck
parent79a0130dbde8a804289d8598d72bfe1794e6f333 (diff)
ocamlPackages.qcheck-alcotest: init at 0.15
Diffstat (limited to 'pkgs/development/ocaml-modules/qcheck')
-rw-r--r--pkgs/development/ocaml-modules/qcheck/alcotest.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/qcheck/alcotest.nix b/pkgs/development/ocaml-modules/qcheck/alcotest.nix
new file mode 100644
index 0000000000000..4f1baec1e556f
--- /dev/null
+++ b/pkgs/development/ocaml-modules/qcheck/alcotest.nix
@@ -0,0 +1,13 @@
+{ buildDunePackage, qcheck-core, alcotest }:
+
+buildDunePackage {
+  pname = "qcheck-alcotest";
+
+  inherit (qcheck-core) version src;
+
+  propagatedBuildInputs = [ qcheck-core alcotest ];
+
+  meta = qcheck-core.meta // {
+    description = "Alcotest backend for qcheck";
+  };
+}