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 17:42:02 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:42:02 +0000
commit8e1b4b3c4c372c07347eb9106615c8791bcc753b (patch)
tree7f87da7df27313e39c888ed2805f2f1422931207 /pkgs/development/ocaml-modules/janestreet
parent0a768bd6c8d19f8f3ed02772ed11cda0e8f91320 (diff)
downloadnixlib-8e1b4b3c4c372c07347eb9106615c8791bcc753b.tar
nixlib-8e1b4b3c4c372c07347eb9106615c8791bcc753b.tar.gz
nixlib-8e1b4b3c4c372c07347eb9106615c8791bcc753b.tar.bz2
nixlib-8e1b4b3c4c372c07347eb9106615c8791bcc753b.tar.lz
nixlib-8e1b4b3c4c372c07347eb9106615c8791bcc753b.tar.xz
nixlib-8e1b4b3c4c372c07347eb9106615c8791bcc753b.tar.zst
nixlib-8e1b4b3c4c372c07347eb9106615c8791bcc753b.zip
ocamlPackages.core: init at 113.33.02+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/core-113_33_02.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/core-113_33_02.nix b/pkgs/development/ocaml-modules/janestreet/core-113_33_02.nix
new file mode 100644
index 000000000000..48bafd5c3c5a
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/core-113_33_02.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, ppx_jane, core_kernel
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-core-113.33.02+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/core-113.33.02+4.03.tar.gz;
+    sha256 = "1gvd5saa0sdgyv9w09imqlkw0c21v2ixic8fxx14jxrwck0zn4bc";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_jane ];
+  propagatedBuildInputs = [ core_kernel ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}