diff options
author | Franz Geffke <m@f-a.nz> | 2024-05-26 20:14:46 +0100 |
---|---|---|
committer | Franz Geffke <m@f-a.nz> | 2024-05-26 20:14:46 +0100 |
commit | 001daf38e9201cf464c5b99e7aca9fe5046bcf3f (patch) | |
tree | 4708d3d5c7b1df91963a1f7aeeb201408da71630 | |
parent | d71ba1bdcd09a13da3452135a8393cb2a07bc1f1 (diff) |
px: sentry-native: Include both 0.6 and 0.7
-rw-r--r-- | px/packages/monitoring.scm | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/px/packages/monitoring.scm b/px/packages/monitoring.scm index f0fc0b5..55957c2 100644 --- a/px/packages/monitoring.scm +++ b/px/packages/monitoring.scm @@ -95,7 +95,33 @@ (description "This package provides background services to show status ") (license license:expat))) -(define-public sentry-native +(define-public sentry-native-0.6 + (package + (name "sentry-native") + (version "0.6.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/getsentry/sentry-native") + (commit version) + (recursive? #t))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1rd069j2jrqaj67l32p005jmlfah6blcxrca7h2kqgc8nv33pd6j")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) + (inputs `(("curl" ,curl))) + (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 +for native applications, optimized for C and C++.") + (license license:expat))) + +(define-public sentry-native-0.7 (package (name "sentry-native") (version "0.7.4") @@ -119,4 +145,4 @@ (synopsis "Official Sentry SDK for C/C++") (description "The Sentry Native SDK is an error and crash reporting client for native applications, optimized for C and C++.") - (license license:expat))) + (license license:expat)))
\ No newline at end of file |