summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 15:15:01 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:36 +0000
commit03be79a01872621fd36844d4958b780730643abc (patch)
tree1f728e2aea03ec9ed8e38791e20170d5d102bbc7 /pkgs/development/ocaml-modules
parent758d052990c668fee6fe0d681fd3e6c41e34f74d (diff)
downloadnixlib-03be79a01872621fd36844d4958b780730643abc.tar
nixlib-03be79a01872621fd36844d4958b780730643abc.tar.gz
nixlib-03be79a01872621fd36844d4958b780730643abc.tar.bz2
nixlib-03be79a01872621fd36844d4958b780730643abc.tar.lz
nixlib-03be79a01872621fd36844d4958b780730643abc.tar.xz
nixlib-03be79a01872621fd36844d4958b780730643abc.tar.zst
nixlib-03be79a01872621fd36844d4958b780730643abc.zip
ocamlPackages.ppx_sexp_message: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_sexp_message-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_sexp_message-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_sexp_message-113_33_00.nix
new file mode 100644
index 000000000000..ddf66364b305
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_sexp_message-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_sexp_conv, ppx_here
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_sexp_message-113.33.00+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_sexp_message-113.33.00+4.03.tar.gz;
+    sha256 = "01vrm8dk413gh19i2y6ffpsmscjhayp3asn5hcbcflxsvlaf4klx";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ];
+  propagatedBuildInputs = [ ppx_here ppx_sexp_conv ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}