forked from toolshed/abra
29 lines
554 B
JSON
29 lines
554 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.17.2/.schema/devbox.schema.json",
|
|
"packages": [
|
|
"go@1.26",
|
|
"gnumake@latest",
|
|
"gettext@latest"
|
|
],
|
|
"env": {
|
|
"GOPATH": "$PWD/.devbox",
|
|
"PATH": "$PWD/.devbox/bin:$PATH"
|
|
},
|
|
"shell": {
|
|
"init_hook": [
|
|
"mkdir -p .devbox/bin"
|
|
],
|
|
"scripts": {
|
|
"xgettext-go": [
|
|
"go install git.coopcloud.tech/toolshed/xgettext-go@latest"
|
|
],
|
|
"build": [
|
|
"make build"
|
|
],
|
|
"test": [
|
|
"make test"
|
|
]
|
|
}
|
|
}
|
|
}
|