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 19:01:51 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:36 -0400
commit4de0724e8c0d06d7c94b75e5ba7f436c60a2f223 (patch)
treea4d8344706fed087361513a3a64fdcc5676e8491 /pkgs/development/ocaml-modules
parent246fd021bde497a098c8d7528cf0e63a7f33de52 (diff)
downloadnixlib-4de0724e8c0d06d7c94b75e5ba7f436c60a2f223.tar
nixlib-4de0724e8c0d06d7c94b75e5ba7f436c60a2f223.tar.gz
nixlib-4de0724e8c0d06d7c94b75e5ba7f436c60a2f223.tar.bz2
nixlib-4de0724e8c0d06d7c94b75e5ba7f436c60a2f223.tar.lz
nixlib-4de0724e8c0d06d7c94b75e5ba7f436c60a2f223.tar.xz
nixlib-4de0724e8c0d06d7c94b75e5ba7f436c60a2f223.tar.zst
nixlib-4de0724e8c0d06d7c94b75e5ba7f436c60a2f223.zip
ppx_sexp_value: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-sexp-value.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-sexp-value.nix b/pkgs/development/ocaml-modules/janestreet/ppx-sexp-value.nix
new file mode 100644
index 000000000000..fc7f043f8a1a
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-sexp-value.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_driver, ppx_here, ppx_sexp_conv, ppx_tools}:
+
+buildOcamlJane rec {
+  name = "ppx_sexp_value";
+  hash = "04602ppqfwx33ghjywam00hlqqzsz4d99r60k9q0v1mynk9pjhj0";
+  propagatedBuildInputs = [ ppx_core ppx_driver ppx_here ppx_sexp_conv ppx_tools ];
+
+  meta = with stdenv.lib; {
+    description = "A ppx rewriter that simplifies building S-Expression from OCaml Values.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}