mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 07:27:48 -05:00
gnu: Add go-github-com-hashicorp-go-syslog.
* gnu/packages/golang.scm (go-github-com-hashicorp-go-syslog): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
251cb68342
commit
336c9f0a81
1 changed files with 22 additions and 0 deletions
|
@ -5933,3 +5933,25 @@ (define-public go-github-com-bep-golibsass
|
|||
(description
|
||||
"This package provides SCSS compiler support for Go applications.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-hashicorp-go-syslog
|
||||
(package
|
||||
(name "go-github-com-hashicorp-go-syslog")
|
||||
(version "1.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/hashicorp/go-syslog")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"09vccqggz212cg0jir6vv708d6mx0f9w5bxrcdah3h6chgmal6v1"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/hashicorp/go-syslog"))
|
||||
(home-page "https://github.com/hashicorp/go-syslog")
|
||||
(synopsis "Golang syslog wrapper, cross-compile friendly")
|
||||
(description "This package is a very simple wrapper around log/syslog")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue