diff options
| author | Sergey Trofimov <sarg@sarg.org.ru> | 2026-01-12 07:39:09 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:23:40 +0100 |
| commit | 374a52656faff64dd40230495a8f0abaaba58a55 (patch) | |
| tree | 9c23e403a127834a8d46b64d4e55762779fceb20 /gnu | |
| parent | 64c2c052a0725e4b03e817cb0e51a6e1be6d273c (diff) | |
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 <sharlatanus@gmail.com>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index de9afb131af..e7081bceb69 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") |
