guix-commits
[Top][All Lists]
Advanced

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

04/06: gnu: Add ruby-typhoeus.


From: guix-commits
Subject: 04/06: gnu: Add ruby-typhoeus.
Date: Fri, 5 Feb 2021 15:29:28 -0500 (EST)

cbaines pushed a commit to branch master
in repository guix.

commit b47c85a50da5ae13b65fd715e51d1090f8250e04
Author: Giacomo Leidi <goodoldpaul@autistici.org>
AuthorDate: Mon Jan 4 01:32:13 2021 +0100

    gnu: Add ruby-typhoeus.
    
    * gnu/packages/ruby.scm (ruby-typhoeus): New variable.
    
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/ruby.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 2a5d4f0..f18c564 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -1484,6 +1484,30 @@ Grammar (PEG) parser generator Domain Specific Language 
(DSL).")
     (home-page "https://github.com/cjheath/treetop";)
     (license license:expat)))
 
+(define-public ruby-typhoeus
+  (package
+    (name "ruby-typhoeus")
+    (version "1.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (rubygems-uri "typhoeus" version))
+       (sha256
+        (base32
+         "1m22yrkmbj81rzhlny81j427qdvz57yk5wbcf3km0nf3bl6qiygz"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:tests? #f))                    ; no included tests
+    (propagated-inputs
+     `(("ruby-ethon" ,ruby-ethon)))
+    (synopsis "@code{libcurl} wrapper in Ruby")
+    (description
+     "Like a modern code version of the mythical beast with 100 serpent heads,
+Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling
+logic.")
+    (home-page "https://github.com/typhoeus/typhoeus";)
+    (license license:expat)))
+
 (define-public ruby-rubocop-performance
   (package
     (name "ruby-rubocop-performance")



reply via email to

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