2021-05-20 23:08:51 +00:00
|
|
|
{ lib, buildDunePackage, cohttp, ocaml_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
|
|
|
|
useDune2
|
|
|
|
minimumOCamlVersion
|
|
|
|
;
|
|
|
|
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
cohttp ocaml_lwt logs sexplib0 uri
|
|
|
|
];
|
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
|
|
|
}
|