2021-01-15 22:18:51 +00:00
|
|
|
{ buildDunePackage
|
2022-07-14 12:49:19 +00:00
|
|
|
, conduit-lwt, ppx_sexp_conv, lwt, uri, ipaddr, ipaddr-sexp, ca-certs, logs
|
2021-05-20 23:08:51 +00:00
|
|
|
, lwt_ssl, tls, lwt_log, ssl
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildDunePackage {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "conduit-lwt-unix";
|
2022-07-14 12:49:19 +00:00
|
|
|
inherit (conduit-lwt) version src;
|
2023-01-20 10:41:00 +00:00
|
|
|
duneVersion = "3";
|
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-05-20 23:08:51 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
conduit-lwt
|
2022-07-14 12:49:19 +00:00
|
|
|
lwt
|
2021-05-20 23:08:51 +00:00
|
|
|
uri
|
|
|
|
ipaddr
|
|
|
|
ipaddr-sexp
|
|
|
|
tls
|
|
|
|
ca-certs
|
|
|
|
logs
|
|
|
|
lwt_ssl
|
|
|
|
];
|
|
|
|
|
|
|
|
doCheck = true;
|
2023-02-09 11:40:11 +00:00
|
|
|
checkInputs = [
|
2021-05-20 23:08:51 +00:00
|
|
|
lwt_log
|
|
|
|
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
|
|
|
}
|