diff options
author | raingloom <raingloom@riseup.net> | 2020-10-29 17:10:25 +0100 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2020-11-05 18:43:59 +0100 |
commit | 336c9f0a81c9bc0ed0a2d3e0d050a677806c07c0 (patch) | |
tree | 6fad04c866805e16336d2370263f29cc62c10c59 /gnu/packages | |
parent | 251cb68342cc226245bdf301e767865e3ec275f7 (diff) | |
download | guix-336c9f0a81c9bc0ed0a2d3e0d050a677806c07c0.tar.gz guix-336c9f0a81c9bc0ed0a2d3e0d050a677806c07c0.zip |
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>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/golang.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 6ba735c4a2..ba75308a4a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5933,3 +5933,25 @@ tests.") (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))) |