sharlatan pushed a commit to branch go-team
in repository guix.
commit cffd97edd37495d8c0f3153d6584ce728a0ceeff
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Dec 3 07:59:14 2024 +0000
gnu: go-github-com-golang-glog: Update to 1.2.3.
* gnu/packages/golang-build.scm (go-github-com-golang-glog): Update to
1.2.3.
[native-inputs]: Add go-github-com-google-go-cmp.
Change-Id: Id734965ab56c50d4e5f3619183addb59e72914de
---
gnu/packages/golang-build.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang-build.scm b/gnu/packages/golang-build.scm
index 7049acf8c2..51801e8ea9 100644
--- a/gnu/packages/golang-build.scm
+++ b/gnu/packages/golang-build.scm
@@ -62,7 +62,7 @@
(define-public go-github-com-golang-glog
(package
(name "go-github-com-golang-glog")
- (version "1.2.2")
+ (version "1.2.3")
(source
(origin
(method git-fetch)
@@ -71,11 +71,13 @@
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1a9ybpgp6grlpbhg2559sh54pxc9qfkhr4zvylw8qv1bny8c90q0"))))
+ (base32 "1sfgcf18wg4glcamgq9njmbny17xq0dd14g3094sj5c1cwjij982"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/golang/glog"))
+ (native-inputs
+ (list go-github-com-google-go-cmp))
(home-page "https://github.com/golang/glog")
(synopsis "Leveled execution logs for Golang")
(description