guix_mirror_bot pushed a commit to branch next-master
in repository guix.
commit 0563a985ba5627028253fe52a60e263e62302547
Author: Sergey Trofimov <[email protected]>
AuthorDate: Mon Jan 12 07:39:09 2026 +0100
gnu: Add go-github-com-lmittmann-tint.
* gnu/packages/golang-xyz.scm (go-github-com-lmittmann-tint): New variable.
Change-Id: Id5f471d26dd9e43a1e52cd5fec147393c8b0e498
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
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 de9afb131a..e7081bceb6 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14647,6 +14647,31 @@ library bevacqua/fuzzysearch.")
to provide functions similar to C++ STL.")
(license license:expat)))
+(define-public go-github-com-lmittmann-tint
+ (package
+ (name "go-github-com-lmittmann-tint")
+ (version "1.1.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/lmittmann/tint")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1gjsfnksk2pshlxy9slqlp67sry1b5i585j41mvwnslwhmkps2r6"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/lmittmann/tint"))
+ (home-page "https://github.com/lmittmann/tint")
+ (synopsis "@code{slog.Handler} that writes colorized logs")
+ (description
+ "Package @code{tint} implements a zero-dependency @code{slog.Handler}
+that writes tinted (colorized) logs. The output format is inspired by the
+@code{zerolog.ConsoleWriter} and @code{slog.TextHandler}.")
+ (license license:expat)))
+
(define-public go-github-com-logrusorgru-aurora
(package
(name "go-github-com-logrusorgru-aurora")