this repo has no description
1opam-version: "2.0" 2synopsis: "GitHub APIv3 OCaml library" 3description: """ 4This library provides an OCaml interface to the 5[GitHub APIv3](https://docs.github.com/rest/) (JSON). 6 7It is compatible with [MirageOS](https://mirage.io) and also compiles to pure 8JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml).""" 9maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 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] 21license: "MIT" 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 "dune" {>= "2.7"} 28 "ocaml" {>= "4.08.0"} 29 "uri" {>= "1.9.0"} 30 "cohttp" {>= "4.0.0"} 31 "lwt" {>= "2.4.4"} 32 "cohttp-lwt" {>= "4.0.0"} 33 "github-data" {= version} 34 "yojson" {>= "1.7.0"} 35 "stringext" 36 "odoc" {with-doc} 37] 38build: [ 39 ["dune" "subst"] {dev} 40 [ 41 "dune" 42 "build" 43 "-p" 44 name 45 "-j" 46 jobs 47 "@install" 48 "@runtest" {with-test} 49 "@doc" {with-doc} 50 ] 51] 52dev-repo: "git+https://github.com/mirage/ocaml-github.git" 53url { 54 src: 55 "https://github.com/mirage/ocaml-github/releases/download/4.4.1/github-data-4.4.1.tbz" 56 checksum: [ 57 "sha256=2e8ea3e84c3a72fbe80ea27f400228f8f3eb82be398b07f8a189a77f39648461" 58 "sha512=71e97efa2bb2ddad4f5fa5fb2234c017338dc19f34ba849bc8787fd7eb010560a219b85f6ac017539f31ca7d785d5936c84892ead929c7ac29202dd8d3791d0d" 59 ] 60} 61x-commit-hash: "d0d486a6ea03e502db28e122eabb7d34cb67e0fe"