summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 15:02:35 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:36 +0000
commit758d052990c668fee6fe0d681fd3e6c41e34f74d (patch)
tree6c653565604891835233982fdf4f8f7047d5fa2c /pkgs/development
parent3615c47c22846ca63ff99e3cde65f87a0dc63396 (diff)
ocamlPackages.ppx_pipebang: init at 113.33.00+4.03
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_pipebang-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_pipebang-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/ppx_pipebang-113_33_00.nix
new file mode 100644
index 000000000000..5aa589e250c1
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_pipebang-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_pipebang-113.33.00+4.03";
+ src = fetchurl {
+ url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_pipebang-113.33.00+4.03.tar.gz;
+ sha256 = "1rjrpbncy8vzwnmc5n0qs4dd40dmg4h75dvd7h7lm8cpxalifivc";
+ };
+
+ buildInputs = [ ocaml findlib ocamlbuild opam ppx_tools ];
+ propagatedBuildInputs = [ ppx_driver ];
+
+ inherit (topkg) installPhase;
+
+ meta = {
+ license = stdenv.lib.licenses.asl20;
+ inherit (ocaml.meta) platforms;
+ };
+}