2021-01-11 13:14:57 +00:00
|
|
|
{ buildDunePackage
|
2020-06-25 22:22:21 +01:00
|
|
|
, conduit-lwt, ppx_sexp_conv, ocaml_lwt, uri, ipaddr, ipaddr-sexp
|
|
|
|
, lwt_ssl, tls
|
2017-08-27 20:00:55 +01:00
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
buildDunePackage {
|
2021-01-21 00:24:35 +00:00
|
|
|
pname = "conduit-lwt-unix";
|
|
|
|
inherit (conduit-lwt) version src minimumOCamlVersion;
|
2020-06-25 22:22:21 +01:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
useDune2 = true;
|
2017-08-27 20:00:55 +01:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2017-08-27 20:00:55 +01:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
propagatedBuildInputs =
|
|
|
|
[ conduit-lwt ocaml_lwt uri ipaddr ipaddr-sexp tls lwt_ssl ];
|
2020-06-25 22:22:21 +01:00
|
|
|
|
2021-01-21 00:24:35 +00:00
|
|
|
meta = conduit-lwt.meta // {
|
|
|
|
description = "A network connection establishment library for Lwt_unix";
|
|
|
|
};
|
2017-08-27 20:00:55 +01:00
|
|
|
}
|