summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-13 18:43:01 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:34 -0400
commitbb34402719b473d289b24ed556131ac7c62995b9 (patch)
treea45942abd59d708b06ee447b407f2cd27ba7dd61 /pkgs/development/ocaml-modules
parentd537a83811d7e3969fac257ad2e0412d91ffb3e8 (diff)
downloadnixlib-bb34402719b473d289b24ed556131ac7c62995b9.tar
nixlib-bb34402719b473d289b24ed556131ac7c62995b9.tar.gz
nixlib-bb34402719b473d289b24ed556131ac7c62995b9.tar.bz2
nixlib-bb34402719b473d289b24ed556131ac7c62995b9.tar.lz
nixlib-bb34402719b473d289b24ed556131ac7c62995b9.tar.xz
nixlib-bb34402719b473d289b24ed556131ac7c62995b9.tar.zst
nixlib-bb34402719b473d289b24ed556131ac7c62995b9.zip
ppx_bench: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-bench.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-bench.nix b/pkgs/development/ocaml-modules/janestreet/ppx-bench.nix
new file mode 100644
index 000000000000..a41773b6f683
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-bench.nix
@@ -0,0 +1,18 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_driver, ppx_inline_test, ppx_tools}:
+
+buildOcamlJane rec {
+  name = "ppx_bench";
+  minimumSupportedOcamlVersion = "4.02";
+  hash = "1l5jlwy1d1fqz70wa2fkf7izngp6nx3g4s9bmnd6ca4dx1x5bksk";
+
+  hasSharedObjects = true;
+
+  propagatedBuildInputs = [ ppx_core ppx_driver ppx_inline_test ppx_tools ];
+
+  meta = with stdenv.lib; {
+    description = "Syntax extension for writing in-line benchmarks in ocaml code.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}