-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
opam
63 lines (63 loc) · 1.51 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
opam-version: "2.0"
maintainer: "sheets@alum.mit.edu"
authors: [
"Anil Madhavapeddy"
"David Sheets"
"Andy Ray"
"Jeff Hammerbacher"
"Thomas Gazagnaire"
"Rudi Grinberg"
"Qi Li"
]
homepage: "https://github.com/mirage/ocaml-github"
bug-reports: "https://github.com/mirage/ocaml-github/issues"
dev-repo: "git+https://github.com/mirage/ocaml-github.git"
tags: [
"org:mirage"
"org:xapi-project"
"git"
]
build: [
["ocaml" "setup.ml" "-configure" "--%{base-unix:enable}%-unix" "--%{js_of_ocaml:enable}%-js" "--prefix" prefix]
["ocaml" "setup.ml" "-build"]
]
install: [
["ocaml" "setup.ml" "-install"]
]
remove: [
["ocamlfind" "remove" "github"]
]
depends: [
"ocaml" {>= "4.02.3" & < "4.06.0"}
"ocamlfind"
"ssl"
"uri" {>= "1.9.0"}
"cohttp" {>= "0.17.0" & < "0.99"}
"lwt" {>= "2.4.4"}
"atdgen" {>= "1.5.0" & < "1.13.0"}
"yojson" {>= "1.2.0"}
"stringext"
"lambda-term" {< "2.0"}
"cmdliner" {>= "0.9.8"}
"base-unix"
]
depopts: [
"js_of_ocaml"
]
conflicts: [
"js_of_ocaml" {< "2.4.0"}
"js_of_ocaml" {>= "3.0"}
]
synopsis: "GitHub APIv3 client bindings"
description: """
This library provides access to many of the most used GitHub API
endpoints while making authorization, two-factor authentication, rate
limit monitoring, event delivery, and polling easy to use."""
flags: light-uninstall
url {
src: "https://github.com/mirage/ocaml-github/archive/v1.1.0.tar.gz"
checksum: [
"sha256=a5e09403fa98b5d537430f3ec5189ba356c86bdffa007d87f73c3557f9b6bd9b"
"md5=b24a324299ce6569aa663a28bb5b79c9"
]
}