dotnet: improve language coverage of passthru.tests for dotnet sdks (#370789)
[NixPkgs.git] / pkgs / development / ocaml-modules / cohttp / lwt.nix
blob4471ae205b1a826999ce903d20adda06d5e2508c
2   buildDunePackage,
3   cohttp,
4   lwt,
5   uri,
6   ppx_sexp_conv,
7   logs,
8   sexplib0,
9 }:
11 buildDunePackage {
12   pname = "cohttp-lwt";
13   inherit (cohttp)
14     version
15     src
16     ;
18   duneVersion = "3";
20   buildInputs = [ ppx_sexp_conv ];
22   propagatedBuildInputs = [
23     cohttp
24     lwt
25     logs
26     sexplib0
27     uri
28   ];
30   meta = cohttp.meta // {
31     description = "CoHTTP implementation using the Lwt concurrency library";
32   };