summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 14:18:59 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:35 +0000
commit3615c47c22846ca63ff99e3cde65f87a0dc63396 (patch)
treef33aae362433b4d6b3de532ee61dee65a3843fe7 /pkgs/development
parentcf39dba1d8293c9ba005456fb2e35c3e61c7e8f4 (diff)
ocamlPackages.ppx_let: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_let-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_let-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_let-113_33_00.nix
new file mode 100644
index 000000000000..b5f0bd4c9324
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_let-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_driver
+}:
+
+stdenv.mkDerivation {
+ name = "ocaml${ocaml.version}-ppx_let-113.33.00+4.03";
+ src = fetchurl {
+ url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_let-113.33.00+4.03.tar.gz;
+ sha256 = "012yzayknm9qv8ap9rbwf4fwnmx935mfy7c75ifagbnfl4lh7dmp";
+ };
+
+ buildInputs = [ ocaml findlib ocamlbuild opam ];
+ propagatedBuildInputs = [ ppx_driver ];
+
+ inherit (topkg) installPhase;
+
+ meta = {
+ license = stdenv.lib.licenses.asl20;
+ inherit (ocaml.meta) platforms;
+ };
+}