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:46:29 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:34 -0400
commitd862e9a6a1dc2039032ef21c08215030a151d991 (patch)
treecb2b556c2737964f4cc81128ee544bc0f1b85a86 /pkgs/development/ocaml-modules
parentbb34402719b473d289b24ed556131ac7c62995b9 (diff)
downloadnixlib-d862e9a6a1dc2039032ef21c08215030a151d991.tar
nixlib-d862e9a6a1dc2039032ef21c08215030a151d991.tar.gz
nixlib-d862e9a6a1dc2039032ef21c08215030a151d991.tar.bz2
nixlib-d862e9a6a1dc2039032ef21c08215030a151d991.tar.lz
nixlib-d862e9a6a1dc2039032ef21c08215030a151d991.tar.xz
nixlib-d862e9a6a1dc2039032ef21c08215030a151d991.tar.zst
nixlib-d862e9a6a1dc2039032ef21c08215030a151d991.zip
ppx_bin_prot: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-bin-prot.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-bin-prot.nix b/pkgs/development/ocaml-modules/janestreet/ppx-bin-prot.nix
new file mode 100644
index 000000000000..9dffbed69600
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-bin-prot.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_tools, ppx_type_conv, bin_prot}:
+
+buildOcamlJane rec {
+  name = "ppx_bin_prot";
+  hash = "0kwmrrrybdkmphqczsr3lg3imsxcjb8iy41syvn44s3kcjfyyzbz";
+  propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv bin_prot ];
+
+  meta = with stdenv.lib; {
+    description = "Generation of bin_prot readers and writers from types";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}