guix-commits
[Top][All Lists]
Advanced

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

02/02: gnu: Add ruby-blather.


From: guix-commits
Subject: 02/02: gnu: Add ruby-blather.
Date: Sat, 2 Jul 2022 12:02:55 -0400 (EDT)

raghavgururajan pushed a commit to branch master
in repository guix.

commit b01043a8ceea39abd1d03b6479b4b218e719ef42
Author: Stephen Paul Weber <singpolyma@singpolyma.net>
AuthorDate: Sat Jul 2 12:00:24 2022 -0400

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

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 24f2b49dec..c1e3dca807 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12952,3 +12952,35 @@ integrate Braintree's global payments platform.")
    (description "Niceogiri provides wrappers and helpers for XML manipulation
 using Nokogiri.")
    (license license:expat)))
+
+(define-public ruby-blather
+  (package
+    (name "ruby-blather")
+    (version "2.0.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (rubygems-uri "blather" version))
+        (sha256
+          (base32 "05ry2x835fj4pzk61282pcz86n018cr39zbgwbi213md74i90s7c"))))
+    (build-system ruby-build-system)
+    (arguments
+     ;; XXX: Tests require too old version of rspec.
+     `(#:tests? #f))
+    (native-inputs
+     (list ruby-countdownlatch
+            ruby-mocha
+            ruby-rb-fsevent
+            ruby-rspec
+            ruby-yard))
+    (propagated-inputs
+     (list ruby-activesupport
+            ruby-eventmachine
+            ruby-niceogiri
+            ruby-nokogiri
+            ruby-sucker-punch))
+    (home-page "https://github.com/adhearsion/blather";)
+    (synopsis "XMPP Domain Specific Language for Ruby")
+    (description "Blather is a XMPP DSL for Ruby written on top of EventMachine
+and Nokogiri.")
+    (license license:expat)))



reply via email to

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