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 17:29:01 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-02-26 17:29:36 +0000
commit0a768bd6c8d19f8f3ed02772ed11cda0e8f91320 (patch)
tree32a12fc30bd623f031e7c3ee9cb482eec97b18eb /pkgs/development/ocaml-modules/janestreet
parent1f1a950cb072c7f01f6bcc4fb47cf81f1552747c (diff)
downloadnixlib-0a768bd6c8d19f8f3ed02772ed11cda0e8f91320.tar
nixlib-0a768bd6c8d19f8f3ed02772ed11cda0e8f91320.tar.gz
nixlib-0a768bd6c8d19f8f3ed02772ed11cda0e8f91320.tar.bz2
nixlib-0a768bd6c8d19f8f3ed02772ed11cda0e8f91320.tar.lz
nixlib-0a768bd6c8d19f8f3ed02772ed11cda0e8f91320.tar.xz
nixlib-0a768bd6c8d19f8f3ed02772ed11cda0e8f91320.tar.zst
nixlib-0a768bd6c8d19f8f3ed02772ed11cda0e8f91320.zip
ocamlPackages.core_kernel: init at 113.33.01+4.03
Diffstat (limited to 'pkgs/development/ocaml-modules/janestreet')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/core_kernel-113_33_01.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/core_kernel-113_33_01.nix b/pkgs/development/ocaml-modules/janestreet/core_kernel-113_33_01.nix
new file mode 100644
index 000000000000..d6da9caed7d7
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/core_kernel-113_33_01.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg, ppx_jane
+, bin_prot, fieldslib, typerep, variantslib
+, ppx_assert, ppx_bench, ppx_expect, ppx_inline_test
+}:
+
+stdenv.mkDerivation {
+  name = "ocaml${ocaml.version}-core_kernel-113.33.01+4.03";
+  src = fetchurl {
+    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/core_kernel-113.33.01+4.03.tar.gz;
+    sha256 = "0ra2frspqjqk1wbb58lrb0anrgsyhja00zsybka85qy71lblamfs";
+  };
+
+  buildInputs = [ ocaml findlib ocamlbuild opam ppx_jane ];
+  propagatedBuildInputs = [
+    bin_prot fieldslib typerep variantslib
+    ppx_assert ppx_bench ppx_expect ppx_inline_test
+  ];
+
+  inherit (topkg) installPhase;
+
+  meta = {
+    license = stdenv.lib.licenses.asl20;
+    inherit (ocaml.meta) platforms;
+  };
+}