From 76f47f86712d4006645a10542908a73f2dc29d8d Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Sat, 28 Jan 2023 22:31:20 +0800 Subject: [PATCH] rosenthal: Add go-github-com-emvi-logbuch. * rosenthal/packages/golang.scm (go-github-com-emvi-logbuch): New variable. --- rosenthal/packages/golang.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/rosenthal/packages/golang.scm b/rosenthal/packages/golang.scm index 2f51871..78ad66e 100644 --- a/rosenthal/packages/golang.scm +++ b/rosenthal/packages/golang.scm @@ -59,6 +59,30 @@ util function library of Go. Inspired by the java apache common package and lodash.js.") (license license:expat))) +(define-public go-github-com-emvi-logbuch + (package + (name "go-github-com-emvi-logbuch") + (version "1.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emvi/logbuch") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1l2pn19m04rbx1lzhknyqr0vvcqn7x4qmrgnj4cx80q666mybd9y")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/emvi/logbuch")) + (home-page "https://github.com/emvi/logbuch") + (synopsis "Logbuch") + (description + "Simple Go logging library with support for different output channels +(io.Writer) for each log level. A formatter can be provided to change the log +output formatting.") + (license license:expat))) + (define-public go-github-com-google-gopacket (package (name "go-github-com-google-gopacket")