blob: 2568f9514d20fec1ee1b8cddf23fda01a72124a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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("https://github.com/influxdata/flux-lsp", {
git = true,
bin = { "flux-lsp" },
}),
}
|