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:52:01 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:35 -0400
commitf8241a28fbb73b3121e9293b896a9b269293b192 (patch)
treeaaf85e4e22fd9626dbe118bd6226a607a8d42454 /pkgs/development/ocaml-modules
parent1f16ade80f7dd7f1dbcb184442a7de691777a7ad (diff)
downloadnixlib-f8241a28fbb73b3121e9293b896a9b269293b192.tar
nixlib-f8241a28fbb73b3121e9293b896a9b269293b192.tar.gz
nixlib-f8241a28fbb73b3121e9293b896a9b269293b192.tar.bz2
nixlib-f8241a28fbb73b3121e9293b896a9b269293b192.tar.lz
nixlib-f8241a28fbb73b3121e9293b896a9b269293b192.tar.xz
nixlib-f8241a28fbb73b3121e9293b896a9b269293b192.tar.zst
nixlib-f8241a28fbb73b3121e9293b896a9b269293b192.zip
ppx_fields_conv: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-fields-conv.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-fields-conv.nix b/pkgs/development/ocaml-modules/janestreet/ppx-fields-conv.nix
new file mode 100644
index 000000000000..15a479ab1824
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-fields-conv.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_tools, ppx_type_conv}:
+
+buildOcamlJane rec {
+  name = "ppx_fields_conv";
+  hash = "11w9wfjgkv7yxv3rwlwi6m193zan6rhmi45q7n3ddi2s8ls3gra7";
+  propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv ];
+
+  meta = with stdenv.lib; {
+    description = "Generation of accessor and iteration functions for ocaml records.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}