this repo has no description
1opam-version: "2.0"
2synopsis: "LSP protocol implementation in OCaml"
3description: """
4
5Implementation of the LSP protocol in OCaml. It is designed to be as portable as
6possible and does not make any assumptions about IO.
7"""
8maintainer: ["Rudi Grinberg <me@rgrinerg.com>"]
9authors: [
10 "Andrey Popp <8mayday@gmail.com>"
11 "Rusty Key <iam@stfoo.ru>"
12 "Louis Roché <louis@louisroche.net>"
13 "Oleksiy Golovko <alexei.golovko@gmail.com>"
14 "Rudi Grinberg <me@rgrinberg.com>"
15 "Sacha Ayoun <sachaayoun@gmail.com>"
16 "cannorin <cannorin@gmail.com>"
17]
18license: "ISC"
19homepage: "https://github.com/ocaml/ocaml-lsp"
20bug-reports: "https://github.com/ocaml/ocaml-lsp/issues"
21depends: [
22 "stdlib-shims"
23 "yojson"
24 "ppx_yojson_conv_lib"
25 "ocaml-syntax-shims"
26 "cppo"
27 "uutf"
28 "csexp"
29 "menhir" {with-test}
30 "cinaps" {with-test}
31 "ppx_expect" {with-test & >= "v0.14.0"}
32 "ocaml" {>= "4.06" & < "4.12"}
33 "dune" {>= "2.5"}
34]
35dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
36build: [
37 ["dune" "subst"] {dev}
38 [
39 "dune"
40 "build"
41 "-p"
42 name
43 "-j"
44 jobs
45 "@install"
46 "@doc" {with-doc}
47 ]
48]
49x-commit-hash: "fee074471b2c345f7e42c6ed3482363279d4f32c"
50url {
51 src:
52 "https://github.com/ocaml/ocaml-lsp/releases/download/1.1.0/ocaml-lsp-server-1.1.0.tbz"
53 checksum: [
54 "sha256=fa0ca1d3c5c3377f798c221381228a65e8f49fece42715d279ebe91f2f4f74c8"
55 "sha512=c00ad47478a4ddfebe3798895700d2bececa29a610c7757619f47a5b90ede921afa56efc776df3a1c4a8b2f082898423a5806d00c041dae137da1b57ee487a9b"
56 ]
57}