forked from ejgallego/coq-lsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coq-lsp.opam
66 lines (54 loc) · 1.98 KB
/
coq-lsp.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
64
65
66
synopsis: "Language Server Protocol native server for Coq"
description:
"""
Language Server Protocol native server for Coq
"""
opam-version: "2.0"
maintainer: "[email protected]"
bug-reports: "https://github.com/ejgallego/coq-lsp/issues"
homepage: "https://github.com/ejgallego/coq-lsp"
dev-repo: "git+https://github.com/ejgallego/coq-lsp.git"
authors: [
"Emilio Jesús Gallego Arias <[email protected]>"
"Ali Caglayan <[email protected]>"
"Shachar Itzhaky <[email protected]>"
"Ramkumar Ramachandra <[email protected]>"
]
license: "LGPL-2.1-or-later"
doc: "https://ejgallego.github.io/coq-lsp/"
depends: [
("ocaml" {>= "5.0"} | ("ocaml" {<= "5.0"} & "memprof-limits" { >= "0.2.1" } ))
"dune" { >= "3.13.0" } # Version interval [3.8-3.12] was
# broken for composed builds with Coq
# lsp dependencies
"cmdliner" { >= "1.1.0" }
"yojson" { >= "1.7.0" }
"uri" { >= "4.2.0" }
"dune-build-info" { >= "3.2.0" }
# waterproof parser
"menhir" { >= "20220210" }
# unit testing
"ppx_inline_test" { >= "v0.15.0" }
# Uncomment this for releases
# "coq" { >= "8.17" < "8.18" }
# coq deps: remove this for releases
"ocamlfind" {>= "1.9.1"}
"zarith" {>= "1.13"}
# serlib deps: see what we need to keep for release
"ppx_deriving" { >= "5.2" }
"ppx_deriving_yojson" { >= "3.7.0" }
"ppx_import" { >= "1.11.0" }
"sexplib" { >= "v0.15.0" & < "v0.18" }
"ppx_sexp_conv" { >= "v0.15.0" & < "v0.18" }
"ppx_compare" { >= "v0.15.0" & < "v0.18" }
"ppx_hash" { >= "v0.15.0" & < "v0.18" }
]
# older results get in mess with ppx_deriving, we cannot control how
# it gets pulled, often in min-bound rev-dep, so we conflict with it
conflicts: [ "result" { < "1.5" } ]
depopts: ["lwt" "logs"]
build: [
[ "rm" "-rf" "vendor" ]
[ "dune" "build" "-p" name "-j" jobs ]
]
run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]