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 # Petanque deps 33 "ppx_import" { >= "1.10.0" } 34 35 # waterproof parser 36 "menhir" { >= "20220210" } 37 38 # unit testing 39 "ppx_inline_test" { >= "0.14.1" } 40 41 # Uncomment this for releases 42 "coq" { >= "8.18" < "8.19" } 43 "coq-serapi" { >= "8.18.0+0.18.2" < "8.19" } 44] 45 46depopts: ["lwt" "logs"] 47 48build: [ 49 [ "rm" "-rf" "vendor" ] 50 [ "dune" "build" "-p" name "-j" jobs ] 51] 52run-test: [ [ "dune" "runtest" "-p" name "-j" jobs ] ] 53url { 54 src: 55 "https://github.com/ejgallego/coq-lsp/releases/download/0.1.9%2B8.18/coq-lsp-0.1.9.8.18.tbz" 56 checksum: [ 57 "sha256=99514bcbf82318b9ff857656f4ec1f87bb46f1c699a4f1e9fb06f5fcdd8d8839" 58 "sha512=fa4593a2ae416e554869a879da5d35a1d33efa5cc8743f77c05373875ecea267019989dec600d5e880d909aea97ce7f6990ac59e58aabce358e3693b0764bef8" 59 ] 60} 61x-commit-hash: "92f4b86666051fd2175c1deb3a1a889ee2797f27"