diff options
Diffstat (limited to 'px/packages/sentry.scm')
-rw-r--r-- | px/packages/sentry.scm | 49 |
1 files changed, 25 insertions, 24 deletions
diff --git a/px/packages/sentry.scm b/px/packages/sentry.scm index 1c75ea3..8d20dc9 100644 --- a/px/packages/sentry.scm +++ b/px/packages/sentry.scm @@ -1,9 +1,10 @@ ;;; Settings Packages Module for PantherX -;;; Author: Hamzeh Nasajpour (h.nasajpour@pantherx.org) +;;; Hamzeh Nasajpour (h.nasajpour@pantherx.org) ;;; (define-module (px packages sentry) - #:use-module ((guix licenses) #:prefix license:) + #:use-module ((guix licenses) + #:prefix license:) #:use-module (guix download) #:use-module (guix git-download) #:use-module (guix packages) @@ -11,28 +12,28 @@ #:use-module (guix utils) #:use-module (gnu packages curl) #:use-module (gnu packages pkg-config)) - + (define-public sentry (package - (name "sentry") - (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))) - (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 + (name "sentry") + (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))) + (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)))
\ No newline at end of file + (license license:expat))) |