2021-05-20 23:08:51 +00:00
|
|
|
{ lib, buildDunePackage, async, async_ssl, ppx_sexp_conv, ppx_here, uri, conduit }:
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "conduit-async";
|
2021-05-20 23:08:51 +00:00
|
|
|
inherit (conduit)
|
|
|
|
version
|
|
|
|
src
|
|
|
|
minimumOCamlVersion
|
|
|
|
useDune2
|
|
|
|
;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
buildInputs = [ ppx_sexp_conv ppx_here ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
propagatedBuildInputs = [ async async_ssl conduit uri ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = conduit.meta // {
|
|
|
|
description = "A network connection establishment library for Async";
|
|
|
|
};
|
2020-09-25 04:45:31 +00:00
|
|
|
}
|