Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / ocaml-modules / cohttp / lwt-jsoo.nix
blob611abb7751ba715a275c63b71c85dc128b46bf15
1 { lib, buildDunePackage
2 , cohttp, cohttp-lwt, logs, lwt, js_of_ocaml, js_of_ocaml-ppx, js_of_ocaml-lwt
3 , nodejs, lwt_ppx
4 }:
6 buildDunePackage {
7   pname = "cohttp-lwt-jsoo";
8   inherit (cohttp-lwt) version src;
10   duneVersion = "3";
12   propagatedBuildInputs = [
13     cohttp
14     cohttp-lwt
15     logs
16     lwt
17     js_of_ocaml
18     js_of_ocaml-ppx
19     js_of_ocaml-lwt
20   ];
22   doCheck = true;
23   checkInputs = [
24     nodejs
25     lwt_ppx
26   ];
28   meta = cohttp-lwt.meta // {
29     description = "CoHTTP implementation for the Js_of_ocaml JavaScript compiler";
30   };