mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
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:
parent
fbdf5b76a7
commit
76f1290a38
1 changed files with 28 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue