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-23 19:04:01 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-23 19:04:01 +0000
commit7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5 (patch)
tree032329aab7c726a07c50affebe4806ac7337e529 /pkgs/development/ocaml-modules/janestreet
parentd6bc0c92363abde154be0e091e54156dca8a69b2 (diff)
downloadnixlib-7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5.tar
nixlib-7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5.tar.gz
nixlib-7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5.tar.bz2
nixlib-7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5.tar.lz
nixlib-7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5.tar.xz
nixlib-7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5.tar.zst
nixlib-7ca9e6776d3c180cc3254b7d88b38ac1d991e9e5.zip
ocamlPackages.ppx_type_conv: init at 113.33.02+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/ppx_type_conv-113_33_02.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/ppx_type_conv-113_33_02.nix b/pkgs/development/ocaml-modules/janestreet/ppx_type_conv-113_33_02.nix
new file mode 100644
index 000000000000..49cfc19321d6
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/ppx_type_conv-113_33_02.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_core, ppx_deriving, ppx_driver
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-ppx_type_conv-133.33.02+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/ppx_type_conv-113.33.02+4.03.tar.gz;
+    sha256 = "0y7hsh152gcj89i6cr3b9kxgdnb2sx8vhaq2bdvbcc9zrirwq4d2";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_deriving ];
+  propagatedBuildInputs = [ ppx_core ppx_driver ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}