blob: afef8c7286a1dbf8fb1b4a257d97cb351c8be17f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
local Pkg = require "mason-core.package"
local cargo = require "mason-core.managers.cargo"
return Pkg.new {
name = "flux-lsp",
desc = [[Implementation of Language Server Protocol for the Flux language]],
homepage = "https://github.com/influxdata/flux-lsp",
languages = { Pkg.Lang.Flux },
categories = { Pkg.Cat.LSP },
install = cargo.crate("flux-lsp", {
git = {
url = "https://github.com/influxdata/flux-lsp",
tag = true,
},
bin = { "flux-lsp" },
}),
}
|