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" 20depends: [ 21 "dune" {>= "3.0"} 22 "ocaml" {>= "5.3" & < "5.4"} 23 "yojson" 24 "base" {>= "v0.16.0"} 25 "lsp" {= "1.19.0"} 26 "jsonrpc" {= "1.19.0"} 27 "re" {>= "1.5.0"} 28 "ppx_yojson_conv_lib" {>= "v0.14"} 29 "dune-rpc" {>= "3.4.0"} 30 "chrome-trace" {>= "3.3.0"} 31 "dyn" 32 "stdune" 33 "fiber" {>= "3.1.1" & < "4.0.0"} 34 "xdg" 35 "ordering" 36 "dune-build-info" 37 "spawn" 38 "astring" 39 "camlp-streams" 40 "ppx_expect" {>= "v0.17.0" & with-test} 41 "ocamlformat" {with-test & = "0.26.2"} 42 "ocamlc-loc" {>= "3.7.0"} 43 "pp" {>= "1.1.2"} 44 "csexp" {>= "1.5"} 45 "ocamlformat-rpc-lib" {>= "0.21.0"} 46 "odoc" {with-doc} 47 "merlin-lib" {= "5.3~5.3preview"} 48] 49available: opam-version >= "2.1.0" 50flags: avoid-version 51dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git" 52build: [ 53 ["dune" "subst"] {dev} 54 [ 55 "dune" 56 "build" 57 "-p" 58 name 59 "-j" 60 jobs 61 "@install" 62 "@doc" {with-doc} 63 ] 64] 65url { 66 src: "https://github.com/voodoos/ocaml-lsp/archive/2d66db71a2870cb79057944f0336a0af257a9874.tar.gz" 67 checksum: "sha256=67be871e19817c7eff0315df74456a2ac915ac1843fbb9d6400c28e1615752b4" 68}