me
/
guix
Archived
1
0
Fork 0

gnu: Add yq.

* gnu/packages/web.scm (yq): New variable.

Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
master
Hilton Chain 2023-07-29 01:20:09 +08:00 committed by Sharlatan Hellseher
parent 8b70d43653
commit 5e556a19d2
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 16 additions and 0 deletions

View File

@ -5248,6 +5248,22 @@ processor. It uses @code{jq}-like syntax but works with YAML files as well as
JSON, XML, properties, CSV and TSV.")
(license license:expat)))
(define-public yq
(package
(inherit go-github-com-mikefarah-yq-v4)
(name "yq")
(arguments
(list #:install-source? #f
#:import-path "github.com/mikefarah/yq/v4"
#:phases
#~(modify-phases %standard-phases
(add-after 'install 'rename-binary
(lambda _
(rename-file (string-append #$output "/bin/v4")
(string-append #$output "/bin/yq")))))))
(propagated-inputs '())
(inputs (package-propagated-inputs go-github-com-mikefarah-yq-v4))))
(define-public go-github-com-itchyny-timefmt-go
(package
(name "go-github-com-itchyny-timefmt-go")