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