guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 955e661889eed49dda1a70685a3448544e7583dc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Feb 13 22:13:12 2026 +0000
gnu: Add go-github-com-mfridman-tparse.
* gnu/packages/golang-check.scm (go-github-com-mfridman-tparse): New
variable.
Change-Id: I1b2ae9579e043a229076dbf3c31e0d14802ab69a
---
gnu/packages/golang-check.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm
index 722ab1297a..87651bde02 100644
--- a/gnu/packages/golang-check.scm
+++ b/gnu/packages/golang-check.scm
@@ -2088,6 +2088,36 @@ testing capabilities.")
Perl's @url{https://metacpan.org/pod/Test::Deep, Test::Deep perl}.")
(license license:bsd-2)))
+(define-public go-github-com-mfridman-tparse
+ (package
+ (name "go-github-com-mfridman-tparse")
+ (version "0.18.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mfridman/tparse")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0x87vn1bm1lsj7sh3m3lky8m2518vjf5xsd9kgkypwk8cwm2k450"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/mfridman/tparse"))
+ (native-inputs
+ (list go-github-com-stretchr-testify))
+ (propagated-inputs
+ (list go-github-com-charmbracelet-lipgloss
+ go-github-com-muesli-termenv
+ go-golang-org-x-term))
+ (home-page "https://github.com/mfridman/tparse")
+ (synopsis "Go test output summarizer library and CLI tool")
+ (description
+ "This package provides a Go library and a command line tool for analyzing
+and summarizing @code{go test} output.")
+ (license license:expat)))
+
(define-public go-github-com-mndrix-tap-go
(package
(name "go-github-com-mndrix-tap-go")