this repo has no description
1opam-version: "2.0"
2maintainer: "sheets@alum.mit.edu"
3authors: [
4 "Anil Madhavapeddy"
5 "David Sheets"
6 "Andy Ray"
7 "Jeff Hammerbacher"
8 "Thomas Gazagnaire"
9 "Rudi Grinberg"
10 "Qi Li"
11 "Jeremy Yallop"
12 "Dave Tucker"
13]
14homepage: "https://github.com/mirage/ocaml-github"
15bug-reports: "https://github.com/mirage/ocaml-github/issues"
16dev-repo: "git+https://github.com/mirage/ocaml-github.git"
17tags: [
18 "org:mirage"
19 "org:xapi-project"
20 "git"
21]
22build: [
23 ["jbuilder" "subst" "-p" name] {dev}
24 ["jbuilder" "build" "-p" name "-j" jobs]
25 ["jbuilder" "runtest" "-p" name] {with-test}
26]
27depends: [
28 "ocaml" {>= "4.03.0"}
29 "jbuilder" {>= "1.0+beta10"}
30 "cohttp" {>= "0.99.0" & < "3.0.0"}
31 "cohttp-lwt-jsoo" {>= "0.99.0" & < "3.0.0"}
32 "js_of_ocaml"
33 "github" {="3.0.1"}
34]
35synopsis: "GitHub APIv3 OCaml Library"
36description: """
37[](https://travis-ci.org/mirage/ocaml-github)
38[](https://mirage.github.io/ocaml-github/)
39
40This library provides an OCaml interface to the [GitHub
41APIv3](https://developer.github.com/v3/) (JSON). It is compatible with
42[MirageOS](https://mirage.io) and also compiles to pure JavaScript via
43[js_of_ocaml](http://ocsigen.org/js_of_ocaml).
44
45It is [not yet complete](#api-support-coverage) but
46[lib/github.atd](https://github.com/mirage/ocaml-github/blob/master/lib/github.atd)
47contains the data types that have been bound so far.
48
49There are several tests and examples in
50[lib_test](https://github.com/mirage/ocaml-github/tree/master/lib_test)
51for small bits of
52functionality. [jar](https://github.com/mirage/ocaml-github/tree/master/jar)
53contains utility programs that use the [git jar](#git-jar) facility for
54stored tokens.
55
56If you are interested in easily using this library to listen for GitHub
57web hook events, you should look at [dsheets/ocaml-github-hooks](https://github.com/dsheets/ocaml-github-hooks)."""
58url {
59 src: "https://github.com/mirage/ocaml-github/archive/v3.0.1.tar.gz"
60 checksum: [
61 "sha256=6c8744b4a55c0b226297777a8fc17a4716ff495e4ac9660284c37c20f7da4635"
62 "md5=4505cc25fbadf7d9d0e3a46d3c1ee128"
63 ]
64}