1{ 2 buildDunePackage, 3 github, 4 cohttp, 5 cohttp-lwt-jsoo, 6 js_of_ocaml-lwt, 7}: 8 9buildDunePackage { 10 pname = "github-jsoo"; 11 inherit (github) version src; 12 13 duneVersion = "3"; 14 15 propagatedBuildInputs = [ 16 github 17 cohttp 18 cohttp-lwt-jsoo 19 js_of_ocaml-lwt 20 ]; 21 22 meta = github.meta // { 23 description = "GitHub APIv3 JavaScript library"; 24 }; 25}