aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers/lua/dummy-registry/dummy2_package.lua
blob: 793404ea1901b17bd20dee0eaff45253851d65e2 (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,
    },
}