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