about 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:37:24 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:34 -0400
commitb86e0ad4986c12d6431e53a542e4b1243b564213 (patch)
treefbd913a3e26413c3477b9b5fe09c165863a6fe93 /pkgs/development
parent7f861c4add4955eca64858acbe4a0d87fe4c61b5 (diff)
downloadnixlib-b86e0ad4986c12d6431e53a542e4b1243b564213.tar
nixlib-b86e0ad4986c12d6431e53a542e4b1243b564213.tar.gz
nixlib-b86e0ad4986c12d6431e53a542e4b1243b564213.tar.bz2
nixlib-b86e0ad4986c12d6431e53a542e4b1243b564213.tar.lz
nixlib-b86e0ad4986c12d6431e53a542e4b1243b564213.tar.xz
nixlib-b86e0ad4986c12d6431e53a542e4b1243b564213.tar.zst
nixlib-b86e0ad4986c12d6431e53a542e4b1243b564213.zip
ppx_sexp_conv: init at 113.33.03
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix b/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix
new file mode 100644
index 000000000000..a36a80a05596
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-sexp-conv.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_tools, ppx_type_conv, sexplib}:
+
+buildOcamlJane rec {
+  name = "ppx_sexp_conv";
+  hash = "1kgbmlc11w5jhbhmy5n0f734l44zwyry48342dm5qydi9sfzcgq2";
+  propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib];
+
+  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;
+  };
+}