summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-13 18:23:00 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:33 -0400
commit7f861c4add4955eca64858acbe4a0d87fe4c61b5 (patch)
treeafc323ecbbe44564154fc863551e9881d7b41b86 /pkgs/development
parentd51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e (diff)
downloadnixlib-7f861c4add4955eca64858acbe4a0d87fe4c61b5.tar
nixlib-7f861c4add4955eca64858acbe4a0d87fe4c61b5.tar.gz
nixlib-7f861c4add4955eca64858acbe4a0d87fe4c61b5.tar.bz2
nixlib-7f861c4add4955eca64858acbe4a0d87fe4c61b5.tar.lz
nixlib-7f861c4add4955eca64858acbe4a0d87fe4c61b5.tar.xz
nixlib-7f861c4add4955eca64858acbe4a0d87fe4c61b5.tar.zst
nixlib-7f861c4add4955eca64858acbe4a0d87fe4c61b5.zip
ppx_here: init at 113.33.03
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-here.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-here.nix b/pkgs/development/ocaml-modules/janestreet/ppx-here.nix
new file mode 100644
index 000000000000..6821a1df35bc
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-here.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_driver}:
+
+buildOcamlJane rec {
+  name = "ppx_here";
+  hash = "1mzdgn8k171zkwmbizf1a48l525ny0w3363c7gknpnifcinxniiw";
+  propagatedBuildInputs = [ ppx_core ppx_driver ];
+
+  meta = with stdenv.lib; {
+    description = "A ppx rewriter that defines an extension node whose value is its source position.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}