this repo has no description
1opam-version: "2.0"
2maintainer: "anil@recoil.org"
3synopsis: "GitHub APIv3 OCaml library"
4description: """
5This library provides an OCaml interface to the [GitHub APIv3](https://developer.github.com/v3/)
6(JSON). It is compatible with [MirageOS](https://mirage.io) and also compiles to pure
7JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml).
8"""
9
10authors: [
11 "Anil Madhavapeddy"
12 "David Sheets"
13 "Andy Ray"
14 "Jeff Hammerbacher"
15 "Thomas Gazagnaire"
16 "Rudi Grinberg"
17 "Qi Li"
18 "Jeremy Yallop"
19 "Dave Tucker"
20]
21tags: ["org:mirage" "org:xapi-project" "git"]
22homepage: "https://github.com/mirage/ocaml-github"
23doc: "https://mirage.github.io/ocaml-github/"
24bug-reports: "https://github.com/mirage/ocaml-github/issues"
25depends: [
26 "ocaml" {>= "4.03.0"}
27 "dune"
28 "uri" {>= "1.9.0"}
29 "cohttp" {>= "0.99.0"}
30 "cohttp-lwt" {>= "0.99"}
31 "lwt" {>= "2.4.4"}
32 "atdgen" {>= "2.0.0" & < "2.10.0"}
33 "yojson" {>= "1.2.0" & < "2.0.0"}
34 "stringext"
35]
36build: [
37 ["dune" "subst"] {dev}
38 ["dune" "build" "-p" name "-j" jobs]
39 ["dune" "runtest" "-p" name] {with-test}
40]
41dev-repo: "git+https://github.com/mirage/ocaml-github.git"
42url {
43 src:
44 "https://github.com/mirage/ocaml-github/releases/download/4.0.0/github-4.0.0.tbz"
45 checksum: [
46 "sha256=cb0956f634d6a9cd3d62b3d7a4bbb67258c3cd397ce6679d7fc04b630dbafeb8"
47 "md5=6aac5e6fefb29582ad452ef21ceffdea"
48 ]
49}