diff options
author | Franz Geffke <m@f-a.nz> | 2024-05-26 09:51:07 +0100 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2024-05-26 09:51:07 +0100 |
commit | d71ba1bdcd09a13da3452135a8393cb2a07bc1f1 (patch) | |
tree | 43514348349b78f79a41174627cfe62b09418f22 | |
parent | c073864f446f0279f5b66a0dfcc1a8b6f9ee1c44 (diff) |
px: sentry-native: Update to v0.7.4
-rw-r--r-- | px/packages/monitoring.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/px/packages/monitoring.scm b/px/packages/monitoring.scm index e90b855..f0fc0b5 100644 --- a/px/packages/monitoring.scm +++ b/px/packages/monitoring.scm @@ -95,10 +95,10 @@ (description "This package provides background services to show status ") (license license:expat))) -(define-public sentry +(define-public sentry-native (package - (name "sentry") - (version "0.6.2") + (name "sentry-native") + (version "0.7.4") (source (origin (method git-fetch) @@ -108,12 +108,13 @@ (recursive? #t))) (file-name (git-file-name name version)) (sha256 - (base32 "1rd069j2jrqaj67l32p005jmlfah6blcxrca7h2kqgc8nv33pd6j")))) + (base32 "0jkxxc9hqinsb5bw6dy400287py93sar3z6f1kc161a274f5hq75")))) (build-system cmake-build-system) (arguments `(#:tests? #f)) (inputs `(("curl" ,curl))) - (native-inputs `(("pkg-config" ,pkg-config))) + (native-inputs `(("pkg-config" ,pkg-config) + ("zlib", zlib))) (home-page "https://github.com/getsentry/sentry-native") (synopsis "Official Sentry SDK for C/C++") (description "The Sentry Native SDK is an error and crash reporting client |