-
Notifications
You must be signed in to change notification settings - Fork 4
/
opam
45 lines (36 loc) · 824 Bytes
/
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
opam-version: "1.2"
maintainer: "Qi Li <liqi0425@gmail.com>"
authors: ["Qi Li <liqi0425@gmail.com>"]
version: "0.0.1"
homepage: "https://github.com/me-box/databox-export-service"
license: "MIT"
dev-repo: "https://github.com/me-box/databox-export-service.git"
bug-reports: "https://github.com/me-box/databox-export-service/issues"
tags: []
available: [ ocaml-version >= "4.01.0"]
depends: [
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build}
"lwt"
"tls"
"opium"
"cohttp"
"websocket"
"sodium"
"macaroons"
"fmt"
"logs"
"uuidm"
"rresult"
"bos"
"cmdliner"
"depyt"
]
build: [
"ocaml" "pkg/pkg.ml" "build" "--pinned" pinned "-n" name "--tests" "false"
]
build-test: [
["ocaml" "pkg/pkg.ml" "build" "--pinned" pinned "-n" name "--tests" "true"]
["ocaml" "pkg/pkg.ml" "test"]
]