summaryrefslogtreecommitdiffstats
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-03-03 22:02:12 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-03-04 04:54:51 +0000
commitd3899a2495a45efc6490454f69ee0eca6a324ec8 (patch)
treea0177772652a7ff142f474f156d6939f501dcca7 /pkgs/development
parent2552b034ab29a8c9e030c23e74be2ae9fcd3b481 (diff)
ocamlPackages.async_kernel: init at 113.33.00
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/janestreet/async_kernel-113_33_00.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/ocaml-modules/janestreet/async_kernel-113_33_00.nix b/pkgs/development/ocaml-modules/janestreet/async_kernel-113_33_00.nix
new file mode 100644
index 000000000000..2110b1d6b504
--- /dev/null
+++ b/pkgs/development/ocaml-modules/janestreet/async_kernel-113_33_00.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
+, core_kernel, ppx_jane
+}:
+
+stdenv.mkDerivation {
+ name = "ocaml${ocaml.version}-async_kernel-113.33.00";
+ src = fetchurl {
+ url = http://ocaml.janestreet.com/ocaml-core/113.33/files/async_kernel-113.33.00.tar.gz;
+ sha256 = "1kkkqpdd3mq9jh3b3l1yk37841973lh6g3pfv8fcjzif4n7myf15";
+ };
+
+ buildInputs = [ ocaml findlib ocamlbuild opam ppx_jane ];
+ propagatedBuildInputs = [ core_kernel ];
+
+ inherit (topkg) installPhase;
+
+ meta = {
+ license = stdenv.lib.licenses.asl20;
+ inherit (ocaml.meta) platforms;
+ };
+}