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
22 ("ocaml" {>= "5.0"} | ("ocaml" {<= "5.0"} & "memprof-limits" { >= "0.2.1" } ))
23
24 "dune" { >= "3.2.0" }
25
26 # lsp dependencies
27 "cmdliner" { >= "1.1.0" }
28 "yojson" { >= "1.7.0" }
29 "uri" { >= "4.2.0" }
30 "dune-build-info" { >= "3.2.0" }
31
32 # waterproof parser
33 "menhir" { >= "20220210" }
34
35 # unit testing
36 "ppx_inline_test" { >= "v0.15.0" }
37
38 # Uncomment this for releases
39 "coq" { >= "8.18" < "8.19" }
40
41 # coq deps: remove this for releases
42 "ocamlfind" {>= "1.9.1"}
43 "zarith" {>= "1.13"}
44
45 # result dep, fixed in main, but kept for older releases
46 "result" { >= "1.5" }
47
48 # serlib deps: see what we need to keep for release
49 "ppx_deriving" { >= "5.2" }
50 "ppx_deriving_yojson" { >= "3.7.0" }
51 "ppx_import" { >= "1.11.0" }
52 "sexplib" { >= "v0.15.0" & < "v0.18" }
53 "ppx_sexp_conv" { >= "v0.15.0" & < "v0.18" }
54 "ppx_compare" { >= "v0.15.0" & < "v0.18" }
55 "ppx_hash" { >= "v0.15.0" & < "v0.18" }
56]
57
58depopts: ["lwt" "logs"]
59
60build: [
61 [ "rm" "-rf" "vendor" ]
62 [ "dune" "build" "-p" name "-j" jobs ]
63]
64run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ]
65url {
66 src:
67 "https://github.com/ejgallego/coq-lsp/releases/download/0.2.2%2B8.18/coq-lsp-0.2.2.8.18.tbz"
68 checksum: [
69 "sha256=ec0a692c2ca60ee1a087626bb6087076f0e9a5ace3c88b1209c2f5dea0c91035"
70 "sha512=8aac7c4c99a7bdae741084e567348f8a4c36d64939d79348ff7b6f50dacf36da7aee8b7e648e94a863e895d1c60d911e2b3e38b4b8dcdf04c8ed1edde28f7660"
71 ]
72}
73x-commit-hash: "6c5fd732e3f5623625195b2f1792ae2ea1009cf8"