depot/third_party/nixpkgs/pkgs/development/ocaml-modules/cohttp/lwt.nix

33 lines
427 B
Nix

{
buildDunePackage,
cohttp,
lwt,
uri,
ppx_sexp_conv,
logs,
sexplib0,
}:
buildDunePackage {
pname = "cohttp-lwt";
inherit (cohttp)
version
src
;
duneVersion = "3";
buildInputs = [ ppx_sexp_conv ];
propagatedBuildInputs = [
cohttp
lwt
logs
sexplib0
uri
];
meta = cohttp.meta // {
description = "CoHTTP implementation using the Lwt concurrency library";
};
}