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:07:19 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:36 -0400
commite485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc (patch)
treeb945506249065856f027c73c3d9915f46974613c /pkgs/development/ocaml-modules
parent753edce0218eea1760f9d27d99bfead413326bf3 (diff)
downloadnixlib-e485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc.tar
nixlib-e485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc.tar.gz
nixlib-e485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc.tar.bz2
nixlib-e485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc.tar.lz
nixlib-e485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc.tar.xz
nixlib-e485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc.tar.zst
nixlib-e485e9b6d3932f0fbfa4b51bd15d5164ce96c7bc.zip
ppx_variants_conv: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-variants-conv.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-variants-conv.nix b/pkgs/development/ocaml-modules/janestreet/ppx-variants-conv.nix
new file mode 100644
index 000000000000..d707df93a16d
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-variants-conv.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_tools, ppx_type_conv, sexplib}:
+
+buildOcamlJane rec {
+  name = "ppx_variants_conv";
+  hash = "0kgal8b9yh7wrd75hllb9fyl6zbksfnr9k7pykpzdm3js98dirhn";
+  propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv sexplib];
+
+  meta = with stdenv.lib; {
+    description = "Generation of accessor and iteration functions for ocaml variant types.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}