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