33 lines
427 B
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";
|
|
};
|
|
}
|