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:13 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-09-16 05:57:19 +0200
commit79a0130dbde8a804289d8598d72bfe1794e6f333 (patch)
treec68445085076e4e8aef0d5031578a215692118c5 /pkgs/development/ocaml-modules/qcheck
parent8d27394e25edcb414708746f5b43e73c74ed5d23 (diff)
ocamlPackages.qcheck-ounit: init at 0.15
Diffstat (limited to 'pkgs/development/ocaml-modules/qcheck')
-rw-r--r--pkgs/development/ocaml-modules/qcheck/ounit.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/qcheck/ounit.nix b/pkgs/development/ocaml-modules/qcheck/ounit.nix
new file mode 100644
index 0000000000000..06897987a954f
--- /dev/null
+++ b/pkgs/development/ocaml-modules/qcheck/ounit.nix
@@ -0,0 +1,14 @@
+{ buildDunePackage, qcheck-core, ounit }:
+
+buildDunePackage {
+  pname = "qcheck-ounit";
+
+  inherit (qcheck-core) version src;
+
+  propagatedBuildInputs = [ qcheck-core ounit ];
+
+  meta = qcheck-core.meta // {
+    description = "OUnit backend for qcheck";
+  };
+
+}