Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 39 lines 564 B view raw
1{ 2 buildDunePackage, 3 cohttp, 4 cohttp-lwt, 5 logs, 6 lwt, 7 js_of_ocaml, 8 js_of_ocaml-ppx, 9 js_of_ocaml-lwt, 10 nodejs, 11 lwt_ppx, 12}: 13 14buildDunePackage { 15 pname = "cohttp-lwt-jsoo"; 16 inherit (cohttp-lwt) version src; 17 18 duneVersion = "3"; 19 20 propagatedBuildInputs = [ 21 cohttp 22 cohttp-lwt 23 logs 24 lwt 25 js_of_ocaml 26 js_of_ocaml-ppx 27 js_of_ocaml-lwt 28 ]; 29 30 doCheck = true; 31 checkInputs = [ 32 nodejs 33 lwt_ppx 34 ]; 35 36 meta = cohttp-lwt.meta // { 37 description = "CoHTTP implementation for the Js_of_ocaml JavaScript compiler"; 38 }; 39}