guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 6f91b26dc7acd1aab80410e1270fe2e93188c138
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Nov 28 14:01:18 2025 +0000
gnu: Add go-github-com-jtolds-tracetagger-v2.
* gnu/packages/golang-xyz.scm (go-github-com-jtolds-tracetagger-v2): New
variable.
Change-Id: I485ae3463c5ac5bdf1d6a1ecf41d2d56e1606b68
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 36ea998ec9..80042740aa 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12652,6 +12652,31 @@ called concurrently with themselves and each other.")
"This package is a simple exponential backoff counter in Go.")
(license license:expat))))
+(define-public go-github-com-jtolds-tracetagger-v2
+ (package
+ (name "go-github-com-jtolds-tracetagger-v2")
+ (version "2.0.0-rc5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jtolio/tracetagger")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1x47n43ikmbndzknyd3xja2cymnm0nmsn7b17cmlpfxgs7vj7gzd"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/jtolds/tracetagger/v2"))
+ (propagated-inputs
+ (list go-github-com-spacemonkeygo-monkit-v3))
+ (home-page "https://github.com/jtolds/tracetagger")
+ (synopsis "Trace tagger for Golang")
+ ;; XXX: Project provides no README or any relevant documentation.
+ (description "This package implements a functionality to tag traces.")
+ (license license:asl2.0)))
+
(define-public go-github-com-jtolio-crawlspace
(package
(name "go-github-com-jtolio-crawlspace")