this repo has no description
1synopsis: "Language Server Protocol native server for Coq"
2description:
3"""
4Language Server Protocol native server for Coq
5"""
6opam-version: "2.0"
7maintainer: "e@x80.org"
8bug-reports: "https://github.com/ejgallego/coq-lsp/issues"
9homepage: "https://github.com/ejgallego/coq-lsp"
10dev-repo: "git+https://github.com/ejgallego/coq-lsp.git"
11authors: [
12 "Emilio Jesús Gallego Arias <e@x80.org>"
13 "Ali Caglayan <alizter@gmail.com>"
14 "Shachar Itzhaky <shachari@cs.technion.ac.il>"
15 "Ramkumar Ramachandra <r@artagnon.com>"
16]
17license: "LGPL-2.1-or-later"
18doc: "https://ejgallego.github.io/coq-lsp/"
19
20depends: [
21 "ocaml" { >= "4.11.0" }
22 "dune" { >= "3.5.0" }
23
24 # lsp dependencies
25 "cmdliner" { >= "1.1.0" }
26 "yojson" { >= "1.7.0" }
27 "uri" { >= "4.2.0" }
28 "dune-build-info" { >= "3.2.0" }
29
30 # waterproof parser
31 "menhir" { >= "20220210" }
32
33 # Uncomment this for releases
34 "coq" { >= "8.18" < "8.19" }
35 "coq-serapi" { >= "8.18" < "8.19" }
36
37]
38
39build: [ [ "dune" "build" "-p" name "-j" jobs ] ]
40run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]
41url {
42 src:
43 "https://github.com/ejgallego/coq-lsp/releases/download/0.1.7%2B8.18/coq-lsp-0.1.7.8.18.tbz"
44 checksum: [
45 "sha256=c68fcee8101b40a1706c74ce2ca0386311aebb79ec1a96032fb51bc8b981314f"
46 "sha512=720ca5ba4f265d942232e8c2a85bd475f03bf7a592e1b9d6dfbd8c68689275ef2224b82310578bf430ad6b192ba5430ab11a62ef2524e3859c157a9680ac391b"
47 ]
48}
49x-commit-hash: "4551ad1c8c6e4d2d3524aa0b3e8ad4e92eb7da3a"
50build-env: [ FCC_TEST = "true" ]