gnu: Add go-github-com-go-kit-log.

* gnu/packages/golang-xyz.scm (go-github-com-go-kit-log): New variable.

Change-Id: Icc42de8b129ea3c9e69eaa77e1d5e6f838b460ec
This commit is contained in:
Sharlatan Hellseher 2024-07-24 17:04:24 +01:00
parent fbdf5b76a7
commit 76f1290a38
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2017,6 +2017,34 @@ (define-public go-github-com-gabriel-vasile-mimetype
@end itemize")
(license license:expat)))
(define-public go-github-com-go-kit-log
(package
(name "go-github-com-go-kit-log")
(version "0.2.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/go-kit/log")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1xjv2g1cd1iaghhm1c1zw0lcz89a9zq5xradyjipvrbqxbxckqm6"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/go-kit/log"))
(propagated-inputs
(list go-github-com-go-logfmt-logfmt))
(home-page "https://github.com/go-kit/log")
(synopsis "Minimal and extensible structured logger")
(description
"This package provides a minimal interface for structured logging in
services. It may be wrapped to encode conventions, enforce type-safety,
provide leveled logging, and so on. It can be used for both typical
application log events, and log-structured data streams.")
(license license:expat)))
(define-public go-github-com-go-logfmt-logfmt
(package
(name "go-github-com-go-logfmt-logfmt")