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"
17doc: "https://mirage.github.io/ocaml-github/"
18
19tags: [
20 "org:mirage"
21 "org:xapi-project"
22 "git"
23]
24build: [
25 ["jbuilder" "subst" "-p" name] {dev}
26 ["jbuilder" "build" "-p" name "-j" jobs]
27 ["jbuilder" "runtest" "-p" name] {with-test}
28]
29depends: [
30 "ocaml" {>= "4.03.0"}
31 "jbuilder" {>= "1.0+beta10"}
32 "github" {="3.1.0"}
33 "cohttp-lwt-unix"
34 "stringext"
35 "lambda-term" {< "2.0"}
36 "cmdliner" {>= "0.9.8" & < "2.0.0"}
37 "base-unix"
38]
39synopsis: "GitHub APIv3 OCaml Library"
40description: """
41[](https://travis-ci.org/mirage/ocaml-github)
42[](https://mirage.github.io/ocaml-github/)
43
44This library provides an OCaml interface to the [GitHub
45APIv3](https://developer.github.com/v3/) (JSON). It is compatible with
46[MirageOS](https://mirage.io) and also compiles to pure JavaScript via
47[js_of_ocaml](http://ocsigen.org/js_of_ocaml).
48
49It is [not yet complete](#api-support-coverage) but
50[lib/github.atd](https://github.com/mirage/ocaml-github/blob/master/lib/github.atd)
51contains the data types that have been bound so far.
52
53There are several tests and examples in
54[lib_test](https://github.com/mirage/ocaml-github/tree/master/lib_test)
55for small bits of
56functionality. [jar](https://github.com/mirage/ocaml-github/tree/master/jar)
57contains utility programs that use the [git jar](#git-jar) facility for
58stored tokens.
59
60If you are interested in easily using this library to listen for GitHub
61web hook events, you should look at [dsheets/ocaml-github-hooks](https://github.com/dsheets/ocaml-github-hooks)."""
62url {
63 src:
64 "https://github.com/mirage/ocaml-github/releases/download/3.1.0/github-3.1.0.tbz"
65 checksum: [
66 "sha256=8b742638d926ad4c469ed3d7ed85f811fcf38a42bebd9e57d2a036d3ca2bf8f9"
67 "md5=111940cd797b1a4c621be2a8077e706f"
68 ]
69}