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:21:59 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:33 -0400
commitd51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e (patch)
treed396d346c297a334eafbd2d038d3dc2883b682a8 /pkgs/development/ocaml-modules
parentb87abcb3b64d110dbef3f8018eadf609fef36835 (diff)
downloadnixlib-d51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e.tar
nixlib-d51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e.tar.gz
nixlib-d51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e.tar.bz2
nixlib-d51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e.tar.lz
nixlib-d51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e.tar.xz
nixlib-d51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e.tar.zst
nixlib-d51fcdb7778f1e64ff4b157753d0fee5b4ca4b0e.zip
ppx_compare: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-compare.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-compare.nix b/pkgs/development/ocaml-modules/janestreet/ppx-compare.nix
new file mode 100644
index 000000000000..f24c82dd6a76
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-compare.nix
@@ -0,0 +1,15 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_driver, ppx_tools, ppx_type_conv}:
+
+buildOcamlJane rec {
+  name = "ppx_compare";
+  hash = "05cnwxfxm8201lpfmcqkcqfy6plh5c2151jbj4qsnxhlvvjli459";
+  propagatedBuildInputs =
+    [ppx_core ppx_driver ppx_tools ppx_type_conv ];
+
+  meta = with stdenv.lib; {
+    description = "Generation of fast comparison functions from type expressions and definitions.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}