guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 08dc168a0b62e5ced25ff473b7b7a8cda6ab5730 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Thu Jun 12 19:08:40 2025 +0100
gnu: Add go-github-com-zclconf-go-cty-yaml. * gnu/packages/golang-xyz.scm (go-github-com-zclconf-go-cty-yaml): New variable. Change-Id: I7e4374e4bc0e50a3aea590835e8afe9dba911c7e --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5d2fe85487..a054e5059d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -19060,6 +19060,30 @@ configuration languages, but other uses may be possible too.") utilities for cty Golang module.") (license license:expat))) +(define-public go-github-com-zclconf-go-cty-yaml + (package + (name "go-github-com-zclconf-go-cty-yaml") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/zclconf/go-cty-yaml") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wwfwrf77rwxi39ln8mhdwg2d2znqz109yksac9x0x9jhczmxbvf")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/zclconf/go-cty-yaml")) + (propagated-inputs (list go-github-com-zclconf-go-cty)) + (home-page "https://github.com/zclconf/go-cty-yaml") + (synopsis "YAML marshalling and unmarshalling for go-cty") + (description + "Package yaml can marshal and unmarshal cty values in YAML format.") + (license license:asl2.0))) + (define-public go-github-com-zyedidia-clipper (package (name "go-github-com-zyedidia-clipper")