me
/
guix
Archived
1
0
Fork 0

gnu: go-github-com-getsentry-raven-go: Update to 0.2.0-0.5c24d51.

* gnu/packages/golang.scm (go-github-com-getsentry-raven-go): Update to
0.2.0-0.5c24d51.
(propagated-inputs): Add go-github-com-certifi-gocertifi and
go-github-com-pkg-errors.
master
Leo Famulari 2019-07-17 13:24:48 -04:00
parent ea22aa1faf
commit 8ffc727e38
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 9 additions and 7 deletions

View File

@ -49,6 +49,7 @@
#:use-module (gnu packages lua) #:use-module (gnu packages lua)
#:use-module (gnu packages mp3) #:use-module (gnu packages mp3)
#:use-module (gnu packages textutils) #:use-module (gnu packages textutils)
#:use-module (gnu packages tls)
#:use-module (ice-9 match) #:use-module (ice-9 match)
#:use-module (srfi srfi-1)) #:use-module (srfi srfi-1))
@ -1362,12 +1363,11 @@ is similar to Go's standard library @code{json} and @code{xml} package.")
(license license:expat))) (license license:expat)))
(define-public go-github-com-getsentry-raven-go (define-public go-github-com-getsentry-raven-go
(let ((commit (let ((commit "5c24d5110e0e198d9ae16f1f3465366085001d92")
"dffeb57df75d6a911f00232155194e43d79d38d7")
(revision "0")) (revision "0"))
(package (package
(name "go-github-com-getsentry-raven-go") (name "go-github-com-getsentry-raven-go")
(version (git-version "0.0.0" revision commit)) (version (git-version "0.2.0" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -1377,14 +1377,16 @@ is similar to Go's standard library @code{json} and @code{xml} package.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"13sb9rvl3369m7fah3ss9g0hwky259snqfn8gmbr0h5zvp651lja")))) "0lvc376sq8r8jhy2v1m6rf1wyld61pvbk0x6j9xpg56ivqy69xs7"))))
(build-system go-build-system) (build-system go-build-system)
(arguments (arguments
'(#:import-path "github.com/getsentry/raven-go")) '(#:import-path "github.com/getsentry/raven-go"))
(home-page (propagated-inputs
"https://github.com/getsentry/raven-go") `(("go-github-com-certifi-gocertifi" ,go-github-com-certifi-gocertifi)
("go-github-com-pkg-errors" ,go-github-com-pkg-errors)))
(home-page "https://github.com/getsentry/raven-go")
(synopsis "Sentry client in Go") (synopsis "Sentry client in Go")
(description "This package is Go client API for the Sentry event/error (description "This package is a Go client API for the Sentry event/error
logging system.") logging system.")
(license license:bsd-3)))) (license license:bsd-3))))