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