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:49:21 -0400
committerMatthew Maurer <matthew.r.maurer@gmail.com>2016-09-14 02:34:35 -0400
commit50f4790f86c796d6026f1c34c2d96fcded5fee76 (patch)
tree462689d21516ee26c11b303bdc28b13857722a06 /pkgs/development/ocaml-modules
parentbf2299bd48d27459391fdfa2b6fa4220e790fea3 (diff)
downloadnixlib-50f4790f86c796d6026f1c34c2d96fcded5fee76.tar
nixlib-50f4790f86c796d6026f1c34c2d96fcded5fee76.tar.gz
nixlib-50f4790f86c796d6026f1c34c2d96fcded5fee76.tar.bz2
nixlib-50f4790f86c796d6026f1c34c2d96fcded5fee76.tar.lz
nixlib-50f4790f86c796d6026f1c34c2d96fcded5fee76.tar.xz
nixlib-50f4790f86c796d6026f1c34c2d96fcded5fee76.tar.zst
nixlib-50f4790f86c796d6026f1c34c2d96fcded5fee76.zip
ppx_enumerate: init at 113.33.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx-enumerate.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx-enumerate.nix b/pkgs/development/ocaml-modules/janestreet/ppx-enumerate.nix
new file mode 100644
index 000000000000..874380cf03a5
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx-enumerate.nix
@@ -0,0 +1,14 @@
+{stdenv, buildOcamlJane,
+ ppx_core, ppx_tools, ppx_type_conv}:
+
+buildOcamlJane rec {
+  name = "ppx_enumerate";
+  hash = "0m11921q2pjzkwckf21fynd2qfy83n9jjsgks23yagdai8a7ym16";
+  propagatedBuildInputs = [ ppx_core ppx_tools ppx_type_conv ];
+
+  meta = with stdenv.lib; {
+    description = "Generate a list containing all values of a finite type.";
+    maintainers = [ maintainers.maurer ];
+    license = licenses.asl20;
+  };
+}