summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/qcheck/ounit.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/ocaml-modules/qcheck/ounit.nix')
-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 00000000000..62b082f48fb
--- /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 useDune2 src;
+
+  propagatedBuildInputs = [ qcheck-core ounit ];
+
+  meta = qcheck-core.meta // {
+    description = "OUnit backend for qcheck";
+  };
+
+}