2021-01-15 22:18:51 +00:00
|
|
|
{ buildDunePackage
|
2020-07-18 16:06:22 +00:00
|
|
|
, conduit-lwt, ppx_sexp_conv, ocaml_lwt, uri, ipaddr, ipaddr-sexp
|
|
|
|
, lwt_ssl, tls
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "conduit-lwt-unix";
|
|
|
|
inherit (conduit-lwt) version src minimumOCamlVersion;
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
useDune2 = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
propagatedBuildInputs =
|
|
|
|
[ conduit-lwt ocaml_lwt uri ipaddr ipaddr-sexp tls lwt_ssl ];
|
2020-07-18 16:06:22 +00:00
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = conduit-lwt.meta // {
|
|
|
|
description = "A network connection establishment library for Lwt_unix";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|