ocamlPackages.conduit-async: Add async_ssl to propagatedBuildInputs
This commit is contained in:
parent
48e06000c2
commit
91337f4169
@ -9,6 +9,7 @@ else
|
||||
|
||||
buildDunePackage {
|
||||
pname = "cohttp-async";
|
||||
useDune2 = true;
|
||||
inherit (cohttp) version src;
|
||||
|
||||
buildInputs = [ ppx_sexp_conv ];
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user