-
Notifications
You must be signed in to change notification settings - Fork 69
/
git-mirage.opam
52 lines (52 loc) · 1.46 KB
/
git-mirage.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
opam-version: "2.0"
synopsis: "A package to use ocaml-git with MirageOS backend"
maintainer: ["[email protected]" "[email protected]"]
authors: "Thomas Gazagnaire"
license: "ISC"
homepage: "https://github.com/mirage/ocaml-git"
doc: "https://mirage.github.io/ocaml-git/"
bug-reports: "https://github.com/mirage/ocaml-git/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.8.0"}
"mimic"
"mimic-happy-eyeballs" {>= "0.0.5"}
"base64" {>= "3.5.0"}
"git" {= version}
"git-paf" {= version}
"awa" {>= "0.2.0"}
"awa-mirage" {>= "0.2.0"}
"dns" {>= "6.1.3"}
"dns-client" {>= "6.1.3"}
"tls" {>= "1.0.0"}
"tls-mirage" {>= "1.0.0"}
"uri"
"happy-eyeballs-mirage" {>= "0.1.2"}
"happy-eyeballs" {>= "0.1.2"}
"ca-certs-nss"
"mirage-crypto" {>= "1.0.0"}
"ptime"
"x509" {>= "1.0.0"}
"cstruct"
"tcpip" {>= "7.0.0"}
"domain-name" {>= "0.3.0"}
"fmt" {>= "0.8.9"}
"ipaddr" {>= "5.0.1"}
"lwt" {>= "5.3.0"}
"mirage-clock" {>= "3.1.0"}
"mirage-flow" {>= "4.0.0"}
"mirage-time" {>= "2.0.1"}
"rresult" {>= "0.7.0"}
"alcotest" {>= "1.2.3" & with-test}
"alcotest-lwt" {>= "1.2.3" & with-test}
"bigstringaf" {>= "0.9.0" & with-test}
"cstruct" {>= "6.0.0" & with-test}
"logs" {>= "0.7.0" & with-test}
"ke" {>= "0.4" & with-test}
]
conflicts: [ "result" {< "1.5"} ]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs "--no-buffer"] {with-test}
]
dev-repo: "git+https://github.com/mirage/ocaml-git.git"