blob: e92ca20b2060bbf3695beb46290fdd0e01ca0239 (
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 = "json-to-struct",
desc = [[A simple command-line tool for generating to struct definitions from JSON]],
homepage = "https://github.com/tmc/json-to-struct",
categories = {},
languages = { Pkg.Lang.Go },
install = go.packages { "github.com/tmc/json-to-struct", bin = { "json-to-struct" } },
}
|