guix_mirror_bot pushed a commit to branch go-team in repository guix. commit c68840a4a56f9854bc2d8b427ab9d3c8a68a2667 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 a48243f47d..b435d14ea0 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -18479,6 +18479,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")