summary refs log tree commit diff
path: root/pkgs
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
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')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-bin-prot.nix14
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 16 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;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 09ad32d7bb4e..6870665e2247 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -5531,6 +5531,8 @@ in
     ppx_inline_test = callPackage ../development/ocaml-modules/janestreet/ppx-inline-test.nix {};
 
     ppx_bench = callPackage ../development/ocaml-modules/janestreet/ppx-bench.nix {};
+
+    ppx_bin_prot = callPackage ../development/ocaml-modules/janestreet/ppx-bin-prot.nix {};
   };
 
   ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;