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 16:03:43 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:36 +0000
commit68998dca58900a89eb63ce3931227cfa5a0eccf0 (patch)
treee6f9e1eccac2233297a2e8c29e6845a43e2ba319 /pkgs/development/ocaml-modules/janestreet
parentceabe0d3ddc0743da81c7a81697b55f13a597212 (diff)
downloadnixlib-68998dca58900a89eb63ce3931227cfa5a0eccf0.tar
nixlib-68998dca58900a89eb63ce3931227cfa5a0eccf0.tar.gz
nixlib-68998dca58900a89eb63ce3931227cfa5a0eccf0.tar.bz2
nixlib-68998dca58900a89eb63ce3931227cfa5a0eccf0.tar.lz
nixlib-68998dca58900a89eb63ce3931227cfa5a0eccf0.tar.xz
nixlib-68998dca58900a89eb63ce3931227cfa5a0eccf0.tar.zst
nixlib-68998dca58900a89eb63ce3931227cfa5a0eccf0.zip
ocamlPackages.ppx_bin_prot: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix
new file mode 100644
index 000000000000..43517a82d3b2
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_bin_prot-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, bin_prot, ppx_deriving, ppx_tools, ppx_type_conv
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_bin_prot-113.33.00+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_bin_prot-113.33.00+4.03.tar.gz;
+    sha256 = "1xw1yjgnd5ny1cq0n6rbsdaywyzq2n0jwg4gjsxv14dhv0alav36";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_tools ];
+  propagatedBuildInputs = [ bin_prot ppx_deriving ppx_type_conv ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}