ocamlPackages.conduit-async: Add async_ssl to propagatedBuildInputs

This commit is contained in:
Aaron L. Zeng 2020-05-25 19:23:05 -04:00
parent 48e06000c2
commit 91337f4169
2 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,7 @@ else
buildDunePackage {
pname = "cohttp-async";
useDune2 = true;
inherit (cohttp) version src;
buildInputs = [ ppx_sexp_conv ];

View File

@ -1,4 +1,4 @@
{ stdenv, buildDunePackage, async, ppx_sexp_conv, conduit }:
{ stdenv, buildDunePackage, async, async_ssl, ppx_sexp_conv, conduit }:
if !stdenv.lib.versionAtLeast conduit.version "1.0"
then conduit
@ -6,11 +6,12 @@ else
buildDunePackage {
pname = "conduit-async";
useDune2 = true;
inherit (conduit) version src;
buildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [ async conduit ];
propagatedBuildInputs = [ async async_ssl conduit ];
meta = conduit.meta // {
description = "A network connection establishment library for Async";