about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 12:48:16 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:35 +0000
commitecc5dd55718ddab061fea93a491000fb5dc8ff84 (patch)
tree767f812caeb88c2b46ab19a89481f326c63613dd /pkgs/development/ocaml-modules/janestreet
parentc4e5f1863147042bd10c5136156029d7fdd283ff (diff)
downloadnixlib-ecc5dd55718ddab061fea93a491000fb5dc8ff84.tar
nixlib-ecc5dd55718ddab061fea93a491000fb5dc8ff84.tar.gz
nixlib-ecc5dd55718ddab061fea93a491000fb5dc8ff84.tar.bz2
nixlib-ecc5dd55718ddab061fea93a491000fb5dc8ff84.tar.lz
nixlib-ecc5dd55718ddab061fea93a491000fb5dc8ff84.tar.xz
nixlib-ecc5dd55718ddab061fea93a491000fb5dc8ff84.tar.zst
nixlib-ecc5dd55718ddab061fea93a491000fb5dc8ff84.zip
ocamlPackages.ppx_enumerate: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_enumerate-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_enumerate-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_enumerate-113_33_00.nix
new file mode 100644
index 000000000000..77fde21e8d79
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_enumerate-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_tools, ppx_deriving, ppx_type_conv
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_enumerate-113.33.00+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_enumerate-113.33.00+4.03.tar.gz;
+    sha256 = "0b0kvdw6kids4yrzqq2h82gmnx1zfiahr82rrdbwiwkk4g0pxl93";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_tools ];
+  propagatedBuildInputs = [ ppx_deriving ppx_type_conv ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}