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:12:58 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:35 +0000
commitc4e5f1863147042bd10c5136156029d7fdd283ff (patch)
treeaae4d62ca37174ad0306c054e3e2329f41bd98a7 /pkgs/development/ocaml-modules/janestreet
parent654dd0aa9614e352d438c4d27d586b4be8ab71d8 (diff)
downloadnixlib-c4e5f1863147042bd10c5136156029d7fdd283ff.tar
nixlib-c4e5f1863147042bd10c5136156029d7fdd283ff.tar.gz
nixlib-c4e5f1863147042bd10c5136156029d7fdd283ff.tar.bz2
nixlib-c4e5f1863147042bd10c5136156029d7fdd283ff.tar.lz
nixlib-c4e5f1863147042bd10c5136156029d7fdd283ff.tar.xz
nixlib-c4e5f1863147042bd10c5136156029d7fdd283ff.tar.zst
nixlib-c4e5f1863147042bd10c5136156029d7fdd283ff.zip
ocamlPackages.ppx_custom_printf: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_custom_printf-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_custom_printf-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_custom_printf-113_33_00.nix
new file mode 100644
index 000000000000..d75c7f811286
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_custom_printf-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_sexp_conv
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_custom_printf-113.33.00+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_custom_printf-113.33.00+4.03.tar.gz;
+    sha256 = "1hw8q4x0hzyg3brlqpdm0bc7z6lnj6qymzw123cf51q9dq0386jb";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ];
+  propagatedBuildInputs = [ ppx_sexp_conv ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}