Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletions packages/coq-lsp/coq-lsp.0.2.4+9.0/opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
synopsis: "Language Server Protocol native server for Coq"
description:
"""
Language Server Protocol native server for Coq
"""
opam-version: "2.0"
maintainer: "e@x80.org"
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 <e@x80.org>"
"Ali Caglayan <alizter@gmail.com>"
"Shachar Itzhaky <shachari@cs.technion.ac.il>"
"Ramkumar Ramachandra <r@artagnon.com>"
]
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" }

# coq-layout-printer
"tyxml" { >= "4.5.0" }

# for waterproof json parser
"menhir" { >= "20220210" }

# unit testing
"ppx_inline_test" { >= "v0.15.0" }

# This is now a hard dep due to API changes in 1.9.7
"ocamlfind" { >= "1.9.8" }

# v9.0
"rocq-prover" { >= "9.0" < "9.1" }

# serlib deps
"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 ] ]

x-maintenance-intent: [ "(latest)" ]
url {
src:
"https://github.com/ejgallego/coq-lsp/releases/download/0.2.4%2B9.0/coq-lsp-0.2.4.9.0.tbz"
checksum: [
"sha256=b6bf58331589b0bc750c01cc96a607322cf20260e61bd74f64998e04a9b909d3"
"sha512=b74f88117a180b089f99dc2d0cd867bdeb7aef071fa487334cdd2961ac61b9ba592e7f58c509dd6920ca2708dcc64992944009d4dce504bb5d0e28bb7d963c07"
]
}
x-commit-hash: "ea06992c3428dbae678e9a803304669a79859a31"

# Only for 0.2.4 due to a silly build system issue, note that rocq-lsp works fine in 32bit systems
available: arch != "arm32" & arch != "x86_32"
Loading