summaryrefslogtreecommitdiff
path: root/px/packages/sentry.scm
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2023-11-06 20:08:14 +0000
committerFranz Geffke <franz@pantherx.org>2023-11-06 20:08:14 +0000
commit47b4c9c854915df93893dbaa993accfacf9027fe (patch)
tree4f9b1742d63fcfbc94cc6b8d84f76c4d00c3a0b7 /px/packages/sentry.scm
parent0b426d7b7ed8e176bf464ef9e0683f74a6c9d20f (diff)
rewrite: apply guix-reference formatting; cleanup some module imports
Diffstat (limited to 'px/packages/sentry.scm')
-rw-r--r--px/packages/sentry.scm49
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)))