guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit f4f9e5bf89efcf6b217daa2ab6c1e3c476308c98
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Feb 13 21:40:16 2026 +0000
gnu: go-github-com-pion-logging: Update to 0.2.4.
* gnu/packages/golang-xyz.scm (go-github-com-pion-logging): Update to 0.2.4.
[native-inputs]: Add go-github-com-stretchr-testify.
Change-Id: Ib3d695c8f852f3176d1883a8daff5c8e6e531402
---
gnu/packages/golang-xyz.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 75ec517757..f71a419996 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -20260,7 +20260,7 @@ alternative fork of https://github.com/pkg/errors
project.")
(define-public go-github-com-pion-logging
(package
(name "go-github-com-pion-logging")
- (version "0.2.3")
+ (version "0.2.4")
(source
(origin
(method git-fetch)
@@ -20269,13 +20269,15 @@ alternative fork of https://github.com/pkg/errors
project.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "13c8pkn6nyhayjax77bcysmv9fsyb63gllk2ns880b3hgdcl2l1a"))))
+ (base32 "1w3sgqjccxag9fkfzmrd4kf0p14qbfv02g74h72af3wqhns12xc4"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pion/logging"
#:test-flags
#~(list "-vet=off"))) ;[email protected] forces vet, but tests are not ready yet.
+ (native-inputs
+ (list go-github-com-stretchr-testify))
(home-page "https://github.com/pion/logging/")
(synopsis "Logging library for Golang projects")
(description