about 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 13:43:30 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:35 +0000
commit8f74b9024fc741b4a1f1d18a486b385f71650883 (patch)
treef1be278b1f0afc2de8473ba15fad91874af9d18d /pkgs/development/ocaml-modules/janestreet
parent0e6e2af219934432cda971a10a1c5db88c174b68 (diff)
downloadnixlib-8f74b9024fc741b4a1f1d18a486b385f71650883.tar
nixlib-8f74b9024fc741b4a1f1d18a486b385f71650883.tar.gz
nixlib-8f74b9024fc741b4a1f1d18a486b385f71650883.tar.bz2
nixlib-8f74b9024fc741b4a1f1d18a486b385f71650883.tar.lz
nixlib-8f74b9024fc741b4a1f1d18a486b385f71650883.tar.xz
nixlib-8f74b9024fc741b4a1f1d18a486b385f71650883.tar.zst
nixlib-8f74b9024fc741b4a1f1d18a486b385f71650883.zip
ocamlPackages.ppx_expect: init at 113.33.01+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_expect-113_33_01.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_expect-113_33_01.nix b/pkgs/development/ocaml-modules/janestreet/ppx_expect-113_33_01.nix
new file mode 100644
index 000000000000..32133dfb6894
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_expect-113_33_01.nix
@@ -0,0 +1,22 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_driver, ppx_assert, ppx_custom_printf, ppx_inline_test
+, ppx_fields_conv, ppx_variants_conv, re, sexplib, fieldslib
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_expect-113.33.01+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_expect-113.33.01+4.03.tar.gz;
+    sha256 = "1r358vx3wnkzq8kwgi49400l1fx2bnl6gds4hl7s67lxsqxki2z7";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_assert ppx_custom_printf ppx_fields_conv ppx_variants_conv re ];
+  propagatedBuildInputs = [ ppx_driver ppx_inline_test fieldslib sexplib ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}