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:53:23 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:35 -0400
commit68aa85cf99b8536fe285781fa612ab611469933e (patch)
treebcbd4c2aa60faf69bcc402de2f55eafda30edcac /pkgs/development/ocaml-modules
parentf8241a28fbb73b3121e9293b896a9b269293b192 (diff)
downloadnixlib-68aa85cf99b8536fe285781fa612ab611469933e.tar
nixlib-68aa85cf99b8536fe285781fa612ab611469933e.tar.gz
nixlib-68aa85cf99b8536fe285781fa612ab611469933e.tar.bz2
nixlib-68aa85cf99b8536fe285781fa612ab611469933e.tar.lz
nixlib-68aa85cf99b8536fe285781fa612ab611469933e.tar.xz
nixlib-68aa85cf99b8536fe285781fa612ab611469933e.tar.zst
nixlib-68aa85cf99b8536fe285781fa612ab611469933e.zip
ppx_let: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-let.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-let.nix b/pkgs/development/ocaml-modules/janestreet/ppx-let.nix
new file mode 100644
index 000000000000..3498affeb090
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-let.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_driver}:
+
+buildOcamlJane rec {
+  name = "ppx_let";
+  hash = "0whnfq4rgkq4apfqnvc100wlk25pmqdyvy6s21dsn3fcm9hff467";
+  propagatedBuildInputs = [ ppx_core ppx_driver ];
+
+  meta = with stdenv.lib; {
+    description = "A ppx rewriter for monadic and applicative let bindings and match statements";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}