ocamlPackages.conduit-async: Add async_ssl to propagatedBuildInputs
This commit is contained in:
parent
48e06000c2
commit
91337f4169
|
@ -9,6 +9,7 @@ else
|
||||||
|
|
||||||
buildDunePackage {
|
buildDunePackage {
|
||||||
pname = "cohttp-async";
|
pname = "cohttp-async";
|
||||||
|
useDune2 = true;
|
||||||
inherit (cohttp) version src;
|
inherit (cohttp) version src;
|
||||||
|
|
||||||
buildInputs = [ ppx_sexp_conv ];
|
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"
|
if !stdenv.lib.versionAtLeast conduit.version "1.0"
|
||||||
then conduit
|
then conduit
|
||||||
|
@ -6,11 +6,12 @@ else
|
||||||
|
|
||||||
buildDunePackage {
|
buildDunePackage {
|
||||||
pname = "conduit-async";
|
pname = "conduit-async";
|
||||||
|
useDune2 = true;
|
||||||
inherit (conduit) version src;
|
inherit (conduit) version src;
|
||||||
|
|
||||||
buildInputs = [ ppx_sexp_conv ];
|
buildInputs = [ ppx_sexp_conv ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ async conduit ];
|
propagatedBuildInputs = [ async async_ssl conduit ];
|
||||||
|
|
||||||
meta = conduit.meta // {
|
meta = conduit.meta // {
|
||||||
description = "A network connection establishment library for Async";
|
description = "A network connection establishment library for Async";
|
||||||
|
|
Loading…
Reference in New Issue