ocamlPackages.async_ssl: init at 0.13

This commit is contained in:
Aaron L. Zeng 2020-07-09 20:50:52 -04:00
parent f2d0a68c21
commit 87cb88b71f
2 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,6 @@
{ janePackage { janePackage
, ctypes , ctypes
, dune-configurator
, num , num
, octavius , octavius
, ppxlib , ppxlib
@ -417,6 +418,15 @@ rec {
propagatedBuildInputs = [ async shell ]; propagatedBuildInputs = [ async shell ];
}; };
async_ssl = janePackage {
pname = "async_ssl";
useDune2 = true;
hash = "0z5dbiam5k7ipx9ph4r8nqv0a1ldx1ymxw3xjxgrdjda90lmwf2k";
meta.description = "Async wrappers for SSL";
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ async ctypes openssl ];
};
core_bench = janePackage { core_bench = janePackage {
pname = "core_bench"; pname = "core_bench";
hash = "1nk0i3z8rqrljbf4bc7ljp71g0a4361nh85s2ang0lgxri74zacm"; hash = "1nk0i3z8rqrljbf4bc7ljp71g0a4361nh85s2ang0lgxri74zacm";

View File

@ -991,7 +991,7 @@ let
janeStreet = janeStreet =
if lib.versionOlder "4.08" ocaml.version if lib.versionOlder "4.08" ocaml.version
then import ../development/ocaml-modules/janestreet/0.13.nix { then import ../development/ocaml-modules/janestreet/0.13.nix {
inherit ctypes janePackage num octavius ppxlib re; inherit ctypes dune-configurator janePackage num octavius ppxlib re;
inherit (pkgs) openssl; inherit (pkgs) openssl;
} }
else if lib.versionOlder "4.07" ocaml.version else if lib.versionOlder "4.07" ocaml.version