blob: 008d27b260bc5d32162685da46dd672507f86579 (
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"
return Pkg:new {
schema = "registry+v1",
name = "dummy2",
description = [[This is a dummy2 package.]],
homepage = "https://example.com",
licenses = { Pkg.License.MIT },
languages = { Pkg.Lang.Dummy2Lang },
categories = { Pkg.Cat.LSP },
source = {
id = "pkg:mason/dummy2@1.0.0",
---@async
---@param ctx InstallContext
install = function(ctx) end,
},
}
|