aboutsummaryrefslogtreecommitdiffstats
path: root/lua/mason-registry/delve/init.lua
blob: a0e3e12114c0250c1ac6dc4c9479cb6326121d1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local Pkg = require "mason-core.package"
local go = require "mason-core.managers.go"

return Pkg.new {
    name = "delve",
    desc = [[Delve is a debugger for the Go programming language.]],
    homepage = "https://github.com/go-delve/delve",
    languages = { Pkg.Lang.Go },
    categories = { Pkg.Cat.DAP },
    install = go.packages { "github.com/go-delve/delve/cmd/dlv", bin = { "dlv" } },
}