guix-commits
[Top][All Lists]
Advanced

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

12/28: gnu: Add ruby-sfl.


From: guix-commits
Subject: 12/28: gnu: Add ruby-sfl.
Date: Sat, 24 Feb 2024 10:51:10 -0500 (EST)

htgoebel pushed a commit to branch master
in repository guix.

commit e912866ce9e0ba179554ef4091dc81518b3245fe
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
AuthorDate: Wed Jul 26 00:15:09 2023 +0200

    gnu: Add ruby-sfl.
    
    * gnu/packages/ruby.scm (ruby-sfl): New variable.
---
 gnu/packages/ruby.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index f4284a834b..ece5192f16 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12983,6 +12983,26 @@ manifest file.")
     (home-page "https://github.com/mvz/rake-manifest";)
     (license license:expat)))
 
+(define-public ruby-sfl
+  (package
+    (name "ruby-sfl")
+    (version "2.3")
+    (source (origin
+              (method url-fetch)
+              (uri (rubygems-uri "sfl" version))
+              (sha256
+               (base32
+                "1qm4hvhq9pszi9zs1cl9qgwx1n4wxq0af0hq9sbf6qihqd8rwwwr"))))
+    (build-system ruby-build-system)
+    (arguments
+     `(#:tests? #f  ;; some tests fail, gem is a dummy for ruby >= 1.9 anyway
+       #:test-target "spec"))
+    (synopsis "Spawn for Ruby 1.8")
+    (description "This pure ruby library provides @code{spawn()} which is
+almost perfectly compatible with ruby 1.9's.")
+    (home-page "https://github.com/ujihisa/spawn-for-legacy";)
+    (license license:bsd-2)))
+
 (define-public ruby-childprocess
   (package
     (name "ruby-childprocess")



reply via email to

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