guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit bf9039b2dcafdf20aebed9941e14dd0265697a18
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Wed May 28 17:11:36 2025 +0100

    gnu: Add go-github-com-getsentry-sentry-go.
    
    * gnu/packages/golang-web.scm (go-github-com-getsentry-sentry-go): New 
variable.
    
    Change-Id: Ie794c3e3766ccf2e815fe254ed6ccf28b8c766bb
---
 gnu/packages/golang-web.scm | 36 ++++++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 1553052eb8..cd6f73efb6 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -2785,6 +2785,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")

Reply via email to