+github.com/TomWright/dasel (#3743)

* +luarocks.org

* omit unnecessary env

* +github.com/TomWright/dasel

* simpler syntax

---------

Co-authored-by: Jacob Heider <jacob@pkgx.dev>
This commit is contained in:
Rajdeep Malakar 2023-10-21 02:04:54 +05:30 committed by GitHub
parent 17f7ee70bd
commit 4ef7d15085
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,5 @@
{
"hello": {
"world": "Hello, World!"
}
}

View file

@ -0,0 +1,27 @@
distributable:
url: https://github.com/TomWright/dasel/archive/refs/tags/v{{version.raw}}.tar.gz
strip-components: 1
versions:
github: TomWright/dasel/tags
strip: /v/
build:
dependencies:
go.dev: ^1
env:
GOBIN: "{{prefix}}/bin"
LDFLAGS:
- -X 'github.com/tomwright/dasel/v2/internal.Version={{version}}'
linux:
# or segmentation fault
# fix found here https://github.com/docker-library/golang/issues/402#issuecomment-982204575
LDFLAGS:
- -buildmode=pie
working-directory: cmd/dasel
script: go install -ldflags="$LDFLAGS"
provides:
- bin/dasel
test: test "$(cat fixture.json | dasel -r json 'hello.world')" = '"Hello, World!"'