guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 4db7e2a9e23fad76a504e6e85f1d8849082d3e05 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Sun Jun 8 13:47:50 2025 +0100
gnu: Add go-github-com-olekukonko-ll. * gnu/packages/golang-xyz.scm (go-github-com-olekukonko-ll): New variable. Change-Id: I2051dad020d46c8d992fcc7e0c7641105fd75b7b --- gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b0e6248f6a..543cf25bf9 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -13509,6 +13509,34 @@ compatibility with `errors.Is`, `errors.As`, and `errors.Unwrap`. The package is thread-safe and optimized with object pooling for performance.") (license license:expat))) +(define-public go-github-com-olekukonko-ll + (package + (name "go-github-com-olekukonko-ll") + (version "0.0.9") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/olekukonko/ll") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1c3f0vqg5fpyqmz86xlgf8sjv9jgbxc3i9ackmdk9xnhjx9mxac9")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/olekukonko/ll")) + (home-page "https://github.com/olekukonko/ll") + (synopsis "Structured Logging Library for Golang") + (description + "@code{ll} is a high-performance, production-ready logging library for Go, +designed to provide @strong{hierarchical namespaces}, @strong{structured +logging}, @strong{middleware pipelines}, @strong{conditional logging}, and +support for multiple output formats, including text, JSON, colorized logs, and +compatibility with Go’s @code{slog}. It’s ideal for applications requiring +fine-grained log control, extensibility, and scalability.") + (license license:expat))) + (define-public go-github-com-olekukonko-tablewriter (package (name "go-github-com-olekukonko-tablewriter")