sharlatan pushed a commit to branch go-team
in repository guix.
commit 9edca9a1351cce6fc31f51f5089ead4b588014ef
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 15 20:07:41 2024 +0000
gnu: go-sigs-k8s-io-yaml: Update to 1.4.0.
* gnu/packages/golang.scm (go-sigs-k8s-io-yaml): Update to 1.4.0.
[propagated-inputs]: Remove go-gopkg-in-yaml-v2 and
go-github-com-davecgh-go-spew.
[native-inputs]: Add go-gopkg-in-check-v1 and go-github-com-google-go-cmp.
Change-Id: Ib628bfdc8d3a9a6c43cb6a5df9f0f1abb1573be6
---
gnu/packages/golang.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 0c49923bde..ac269c0c2d 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6519,7 +6519,7 @@ Features:
(define-public go-sigs-k8s-io-yaml
(package
(name "go-sigs-k8s-io-yaml")
- (version "1.3.0")
+ (version "1.4.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -6528,10 +6528,10 @@ Features:
(file-name (git-file-name name version))
(sha256
(base32
- "0qxs0ppqwqrfqs4aywyn1h28xh1qlj5ds4drmygaz1plrxj02dqn"))))
+ "0yjnmpwmvlb6md3djn6qx1ag4ld7gjz7jfyz1ldml88zyb9crpqx"))))
(build-system go-build-system)
(arguments '(#:import-path "sigs.k8s.io/yaml"))
- (propagated-inputs (list go-gopkg-in-yaml-v2
go-github-com-davecgh-go-spew))
+ (native-inputs (list go-gopkg-in-check-v1 go-github-com-google-go-cmp))
(home-page "https://sigs.k8s.io/yaml")
(synopsis "YAML marshaling and unmarshaling support for Go")
(description