From 374a52656faff64dd40230495a8f0abaaba58a55 Mon Sep 17 00:00:00 2001 From: Sergey Trofimov Date: Mon, 12 Jan 2026 07:39:09 +0100 Subject: [PATCH] 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 Signed-off-by: Rutherther --- 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 de9afb131af38b5e17714a44afae2ae4f094e138..e7081bceb69d94c2fa826cd8e3166b224737d5d5 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")