~ruther/guix-local

dc119f0a6c8c940e215d751beb374b48cf6d5a69 — Sharlatan Hellseher a year ago 4ef468c
gnu: Add go-github-com-getsentry-sentry-go.

* gnu/packages/golang-web.scm (go-github-com-getsentry-sentry-go): New variable.

Change-Id: Ie15ee924cf668d09061e0b09c4f9b020bd3214b7
1 files changed, 36 insertions(+), 0 deletions(-)

M gnu/packages/golang-web.scm
M gnu/packages/golang-web.scm => gnu/packages/golang-web.scm +36 -0
@@ 2989,6 2989,42 @@ OpenAPI v3.1}.")
logging system.")
      (license license:bsd-3))))

(define-public go-github-com-getsentry-sentry-go
  (package
    (name "go-github-com-getsentry-sentry-go")
    (version "0.33.0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/getsentry/sentry-go")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1mq66f0qvcfbafckpjipg6jbmq9115w5rbw795gf6vs0vanqq6v5"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/getsentry/sentry-go"
      ;; XXX: Full tests suite requires more packages.
      #:test-subdirs #~(list "internal/...")))
    (native-inputs
     (list go-github-com-google-go-cmp
           go-github-com-stretchr-testify
           go-go-uber-org-goleak))
    (propagated-inputs
     (list go-github-com-go-errors-errors
           go-github-com-pingcap-errors
           go-github-com-pkg-errors
           go-golang-org-x-sys
           go-golang-org-x-text))
    (home-page "https://github.com/getsentry/sentry-go")
    (synopsis "Sentry SDK for Golang")
    (description
     "@code{sentry-go} provides a @url{sentry.io, Sentry} client
implementation for the Go programming language.")
    (license license:expat)))

(define-public go-github-com-gin-contrib-sse
  (package
    (name "go-github-com-gin-contrib-sse")