forked from ocaml/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopam
More file actions
50 lines (49 loc) · 1.49 KB
/
opam
File metadata and controls
50 lines (49 loc) · 1.49 KB
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
opam-version: "2.0"
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
["dune" "build" "-p" name "@doc"] {with-doc}
]
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
authors: [
"Anil Madhavapeddy"
"David Sheets"
"Andy Ray"
"Jeff Hammerbacher"
"Thomas Gazagnaire"
"Rudi Grinberg"
"Qi Li"
"Jeremy Yallop"
"Dave Tucker"
]
bug-reports: "https://github.com/mirage/ocaml-github/issues"
homepage: "https://github.com/mirage/ocaml-github"
doc: "https://mirage.github.io/ocaml-github/"
license: "MIT"
dev-repo: "git+https://github.com/mirage/ocaml-github.git"
synopsis: "GitHub APIv3 OCaml library"
description: """
This library provides an OCaml interface to the
[GitHub APIv3](https://developer.github.com/v3/) (JSON).
It is compatible with [MirageOS](https://mirage.io) and also compiles to pure
JavaScript via [js_of_ocaml](http://ocsigen.org/js_of_ocaml)."""
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.10"}
"uri" {>= "1.9.0"}
"cohttp" {>= "0.99.0"}
"cohttp-lwt" {>= "0.99"}
"lwt" {>= "2.4.4"}
"atdgen" {>= "2.0.0" & < "2.16.0"}
"yojson" {>= "1.7.0"}
"stringext"
]
url {
src:
"https://github.com/mirage/ocaml-github/releases/download/4.3.0/github-unix-4.3.0.tbz"
checksum: [
"sha256=4e0d71d04fb4db9f07068cda61a60412a74f153a923878fafe261a42d3a6efbc"
"sha512=4d7beeb4a86198605c04df46f7460c80fde746fb2a4173c3de753758510d74ec19269ace22cbd6d8d9cc752f818bf964225865d62328a344e547d0f13919cc22"
]
}