guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/05: gnu: Add ruby-sentry.


From: guix-commits
Subject: 02/05: gnu: Add ruby-sentry.
Date: Thu, 30 Jun 2022 06:56:20 -0400 (EDT)

raghavgururajan pushed a commit to branch master
in repository guix.

commit f33414564dec9034a61bf545faede6d5ac07a87a
Author: Stephen Paul Weber <singpolyma@singpolyma.net>
AuthorDate: Thu Jun 30 06:32:51 2022 -0400

    gnu: Add ruby-sentry.
    
    * gnu/packages/ruby.scm (ruby-sentry): New variable.
    
    Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
---
 gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 0792b66962..572b2c341f 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12786,3 +12786,27 @@ Dashboard.  It is a Ruby Client library for IRIS / BBS 
API.")
     (description "Sentry-Core provides a gem that provides a client
 interface for the Sentry error logger.")
     (license license:expat)))
+
+(define-public ruby-sentry
+  (package
+    (name "ruby-sentry")
+    (version "5.3.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (rubygems-uri "sentry-ruby" version))
+        (sha256
+          (base32 "0by9mvw8rklzpyx59vfija8h3ssfvxvf5nbqxfmygfy6lm1vdngz"))))
+    (build-system ruby-build-system)
+    (arguments
+     ;; No rakefile in gem
+     `(#:tests? #f))
+    (propagated-inputs
+      (list ruby-concurrent
+             ruby-faraday
+             ruby-sentry-core))
+    (home-page "https://sentry.io/for/ruby/";)
+    (synopsis "Client interface for the Sentry error logger")
+    (description "Sentry provides a gem that provides a client
+interface for the Sentry error logger.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]