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 "cohttp" {>= "0.99.0" & < "3.0.0"} 33 "cohttp-lwt-jsoo" {>= "0.99.0" & < "3.0.0"} 34 "js_of_ocaml" 35 "github" {="3.1.0"} 36] 37synopsis: "GitHub APIv3 OCaml Library" 38description: """ 39[![Build Status](https://travis-ci.org/mirage/ocaml-github.svg)](https://travis-ci.org/mirage/ocaml-github) 40[![docs](https://img.shields.io/badge/doc-online-blue.svg)](https://mirage.github.io/ocaml-github/) 41 42This library provides an OCaml interface to the [GitHub 43APIv3](https://developer.github.com/v3/) (JSON). It is compatible with 44[MirageOS](https://mirage.io) and also compiles to pure JavaScript via 45[js_of_ocaml](http://ocsigen.org/js_of_ocaml). 46 47It is [not yet complete](#api-support-coverage) but 48[lib/github.atd](https://github.com/mirage/ocaml-github/blob/master/lib/github.atd) 49contains the data types that have been bound so far. 50 51There are several tests and examples in 52[lib_test](https://github.com/mirage/ocaml-github/tree/master/lib_test) 53for small bits of 54functionality. [jar](https://github.com/mirage/ocaml-github/tree/master/jar) 55contains utility programs that use the [git jar](#git-jar) facility for 56stored tokens. 57 58If you are interested in easily using this library to listen for GitHub 59web hook events, you should look at [dsheets/ocaml-github-hooks](https://github.com/dsheets/ocaml-github-hooks).""" 60url { 61 src: 62 "https://github.com/mirage/ocaml-github/releases/download/3.1.0/github-3.1.0.tbz" 63 checksum: [ 64 "sha256=8b742638d926ad4c469ed3d7ed85f811fcf38a42bebd9e57d2a036d3ca2bf8f9" 65 "md5=111940cd797b1a4c621be2a8077e706f" 66 ] 67}