a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
34 lines
590 B
Nix
34 lines
590 B
Nix
{ buildDunePackage
|
|
, conduit-lwt, ppx_sexp_conv, lwt, uri, ipaddr, ipaddr-sexp, ca-certs, logs
|
|
, lwt_ssl, tls, lwt_log, ssl
|
|
}:
|
|
|
|
buildDunePackage {
|
|
pname = "conduit-lwt-unix";
|
|
inherit (conduit-lwt) version src;
|
|
duneVersion = "3";
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [
|
|
conduit-lwt
|
|
lwt
|
|
uri
|
|
ipaddr
|
|
ipaddr-sexp
|
|
tls
|
|
ca-certs
|
|
logs
|
|
lwt_ssl
|
|
];
|
|
|
|
doCheck = true;
|
|
nativeCheckInputs = [
|
|
lwt_log
|
|
ssl
|
|
];
|
|
|
|
meta = conduit-lwt.meta // {
|
|
description = "A network connection establishment library for Lwt_unix";
|
|
};
|
|
}
|