2022-07-14 12:49:19 +00:00
|
|
|
{ lib, buildDunePackage, cohttp, lwt, uri, ppx_sexp_conv, logs, sexplib0 }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildDunePackage {
|
2021-02-05 17:12:51 +00:00
|
|
|
pname = "cohttp-lwt";
|
2021-05-20 23:08:51 +00:00
|
|
|
inherit (cohttp)
|
|
|
|
version
|
|
|
|
src
|
|
|
|
;
|
|
|
|
|
2023-01-20 10:41:00 +00:00
|
|
|
duneVersion = "3";
|
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
propagatedBuildInputs = [
|
2022-07-14 12:49:19 +00:00
|
|
|
cohttp lwt logs sexplib0 uri
|
2021-05-20 23:08:51 +00:00
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
meta = cohttp.meta // {
|
|
|
|
description = "CoHTTP implementation using the Lwt concurrency library";
|
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
}
|