Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
21 lines
396 B
Nix
21 lines
396 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";
|
|
};
|
|
}
|