summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/janestreet/async_unix-113_33_00.nix
blob: 595e1198de5f81da88bfa29b0ffba1314fe9eee6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
, async_kernel, core, ppx_jane
}:

stdenv.mkDerivation {
  name = "ocaml${ocaml.version}-async_unix-113.33.00+4.03";
  src = fetchurl {
    url = http://ocaml.janestreet.com/ocaml-core/113.33/files/async_unix-113.33.00+4.03.tar.gz;
    sha256 = "12b0ffq9yhv3f49kk2k7z7hrn2j4xlka7knm99hczl6gmjni7nqv";
  };

  buildInputs = [ ocaml findlib ocamlbuild opam ppx_jane ];
  propagatedBuildInputs = [ async_kernel core ];

  inherit (topkg) installPhase;

  meta = {
    license = stdenv.lib.licenses.asl20;
    inherit (ocaml.meta) platforms;
  };
}