this repo has no description
1opam-version: "2.0"
2synopsis: "LSP Server for OCaml"
3description: "An LSP server for OCaml."
4maintainer: ["Rudi Grinberg <me@rgrinberg.com>"]
5authors: [
6 "Andrey Popp <8mayday@gmail.com>"
7 "Rusty Key <iam@stfoo.ru>"
8 "Louis Roché <louis@louisroche.net>"
9 "Oleksiy Golovko <alexei.golovko@gmail.com>"
10 "Rudi Grinberg <me@rgrinberg.com>"
11 "Sacha Ayoun <sachaayoun@gmail.com>"
12 "cannorin <cannorin@gmail.com>"
13 "Ulugbek Abdullaev <ulugbekna@gmail.com>"
14 "Thibaut Mattio <thibaut.mattio@gmail.com>"
15 "Max Lantas <mnxndev@outlook.com>"
16]
17license: "ISC"
18homepage: "https://github.com/ocaml/ocaml-lsp"
19bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
20flags: avoid-version
21depends: [
22 "dune" {>= "3.0"}
23 "yojson"
24 "base" {>= "v0.14"}
25 "re" {>= "1.5.0"}
26 "ppx_yojson_conv_lib" {>= "v0.14"}
27 "dune-rpc" {>= "3.4.0"}
28 "chrome-trace" {>= "3.3.0"}
29 "dyn"
30 "stdune"
31 "fiber" {>= "3.1.1" & < "4.0.0"}
32 "xdg"
33 "ordering"
34 "dune-build-info"
35 "spawn"
36 "astring"
37 "camlp-streams"
38 "ppx_expect" {>= "v0.15.0" & with-test}
39 "ocamlformat" {with-test & = "0.24.1"}
40 "ocamlc-loc" {>= "3.7.0"}
41 "uutf" {>= "1.0.2"}
42 "pp" {>= "1.1.2"}
43 "csexp" {>= "1.5"}
44 "ocamlformat-rpc-lib" {>= "0.21.0"}
45 "odoc" {with-doc}
46 "ocaml" {>= "5.2" & < "5.3"}
47 "merlin-lib" {>= "5.1"}
48 "ocaml-index" {>= "1.0" & post}
49]
50dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
51build: [
52 ["dune" "subst"] {dev}
53 [
54 "dune"
55 "build"
56 "-j"
57 jobs
58 "ocaml-lsp-server.install"
59 "--release"
60 ]
61]
62url {
63 src:
64 "https://github.com/ocaml/ocaml-lsp/archive/0573158a2bdbe891d6d0026c922d9cfdca55bcf8.tar.gz"
65 checksum: [
66 "sha256=dbf43e82a01b2999db6b5df009b3f285b04265b81ec34edc25604b72e1613a2c"
67 "sha512=51bbf98dd4cd2c9d35cc3a515fff74a7d10ed736febb8ff2683739aab818e578ca16e9f126aa774a492a7141e0d34977fc1558f5feac71b8db3c1e1843fd213f"
68 ]
69}