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