3e2acf8aff
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
21 lines
428 B
Nix
21 lines
428 B
Nix
{ lib, buildDunePackage, cohttp, ocaml_lwt, uri, ppx_sexp_conv, logs, sexplib0 }:
|
|
|
|
buildDunePackage {
|
|
pname = "cohttp-lwt";
|
|
inherit (cohttp)
|
|
version
|
|
src
|
|
useDune2
|
|
minimumOCamlVersion
|
|
;
|
|
|
|
buildInputs = [ ppx_sexp_conv ];
|
|
|
|
propagatedBuildInputs = [
|
|
cohttp ocaml_lwt logs sexplib0 uri
|
|
];
|
|
|
|
meta = cohttp.meta // {
|
|
description = "CoHTTP implementation using the Lwt concurrency library";
|
|
};
|
|
}
|