diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-03 07:59:14 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:41:48 +0000 |
commit | 3eb66154fa77de35810ba9333e1d44998bc3a233 (patch) | |
tree | 0a4cbae97923dac6225693df30d873fcda422bce | |
parent | 62818680fe41e847a164efa7ddff143813807b53 (diff) |
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
-rw-r--r-- | gnu/packages/golang-build.scm | 6 |
1 files 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 |