diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 12:15:12 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:08 +0100 |
| commit | dc119f0a6c8c940e215d751beb374b48cf6d5a69 (patch) | |
| tree | 9814367b784a92687cd8aab46ccbe204aa237fe4 | |
| parent | 4ef468c392303b5b329be3dbdb97c38680b0d102 (diff) | |
gnu: Add go-github-com-getsentry-sentry-go.
* gnu/packages/golang-web.scm (go-github-com-getsentry-sentry-go): New variable.
Change-Id: Ie15ee924cf668d09061e0b09c4f9b020bd3214b7
| -rw-r--r-- | gnu/packages/golang-web.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 4a7e117775c..54c7fb54714 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -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") |
