Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildDunePackage, cohttp, lwt, uri, ppx_sexp_conv, logs, sexplib0 }:
2
3buildDunePackage {
4 pname = "cohttp-lwt";
5 inherit (cohttp)
6 version
7 src
8 ;
9
10 duneVersion = "3";
11
12 buildInputs = [ ppx_sexp_conv ];
13
14 propagatedBuildInputs = [
15 cohttp lwt logs sexplib0 uri
16 ];
17
18 meta = cohttp.meta // {
19 description = "CoHTTP implementation using the Lwt concurrency library";
20 };
21}