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