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 19:03:20 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:36 -0400
commit753edce0218eea1760f9d27d99bfead413326bf3 (patch)
tree9aa8838848ea7ebcc4f6f912dffdb8ac464212c3 /pkgs/development
parent4de0724e8c0d06d7c94b75e5ba7f436c60a2f223 (diff)
downloadnixlib-753edce0218eea1760f9d27d99bfead413326bf3.tar
nixlib-753edce0218eea1760f9d27d99bfead413326bf3.tar.gz
nixlib-753edce0218eea1760f9d27d99bfead413326bf3.tar.bz2
nixlib-753edce0218eea1760f9d27d99bfead413326bf3.tar.lz
nixlib-753edce0218eea1760f9d27d99bfead413326bf3.tar.xz
nixlib-753edce0218eea1760f9d27d99bfead413326bf3.tar.zst
nixlib-753edce0218eea1760f9d27d99bfead413326bf3.zip
ppx_typerep_conv: init at 113.33.03
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-typerep-conv.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-typerep-conv.nix b/pkgs/development/ocaml-modules/janestreet/ppx-typerep-conv.nix
new file mode 100644
index 000000000000..e6d23e0dbdd0
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-typerep-conv.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_tools, ppx_type_conv, typerep}:
+
+buildOcamlJane rec {
+  name = "ppx_typerep_conv";
+  hash = "0dldlx73r07j6w0i7h4hxly0v678naa79na5rafsk2974gs5ih9g";
+  propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv typerep ];
+
+  meta = with stdenv.lib; {
+    description = "Automatic generation of runtime types from type definitions";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}