gnu: Add go-github-com-kataras-golog.

* gnu/packages/golang.scm (go-github-com-kataras-golog): New variable.
This commit is contained in:
Raghav Gururajan 2021-05-24 21:37:05 -04:00
parent 56835ab730
commit d28eacb011
No known key found for this signature in database
GPG key ID: 5F5816647F8BE551

View file

@ -74,6 +74,31 @@ (define-module (gnu packages golang)
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
(define-public go-github-com-kataras-golog
(package
(name "go-github-com-kataras-golog")
(version "0.1.7")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/kataras/golog")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1ll24g50j48wqikzf67cyaq0m0f57v1ap24nbz3cmv3yzqi6wdl9"))))
(build-system go-build-system)
(arguments
`(#:import-path "github.com/kataras/golog"))
(propagated-inputs
`(("go-github-com-kataras-pio"
,go-github-com-kataras-pio)))
(home-page "https://github.com/kataras/golog")
(synopsis "Logging foundation for Go applications")
(description "GoLog is a level-based logger written in Go.")
(license license:bsd-3)))
(define-public go-github-com-kataras-pio
(package
(name "go-github-com-kataras-pio")