summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Streit <simon@netpanic.org>2022-08-24 18:39:33 +0200
committerSimon Streit <simon@netpanic.org>2023-06-19 21:36:36 +0200
commit205738db98512cac69d0401b626373a56c0adccc (patch)
tree34f8927fcb39c93527b00bc03087b438d5e5fbc2
parentb1da1481fa34811839d0e6cdeb8a561a1548aea9 (diff)
siguix: Add go-github-com-op-go-logging.
* siguix/packages/golang.scm (go-github-com-op-go-logging): New variable.
-rw-r--r--siguix/packages/golang.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/siguix/packages/golang.scm b/siguix/packages/golang.scm
index 2a9ef8d..90f5311 100644
--- a/siguix/packages/golang.scm
+++ b/siguix/packages/golang.scm
@@ -142,3 +142,29 @@
"This is a Go package for accessing Music Player Daemon (MPD)
(@url{http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki,http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki})")
(license license:expat)))
+
+(define-public go-github-com-op-go-logging
+ (let ((commit "970db520ece77730c7e4724c61121037378659d9")
+ (revision "1"))
+ (package
+ (name "go-github-com-op-go-logging")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/op/go-logging")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1cpna2x5l071z1vrnk7zipdkka8dzwsjyx7m79xk0lr08rip0kcj"))))
+ (build-system go-build-system)
+ (arguments '(#:import-path "github.com/op/go-logging"
+ #:tests? #f))
+ (home-page "https://github.com/op/go-logging")
+ (synopsis "Golang logging library")
+ (description
+ "Package logging implements a logging infrastructure for Go. It supports
+different logging backends like syslog, file and memory. Multiple backends
+can be utilized with different log levels per backend and logger.")
+ (license license:bsd-3))))