summaryrefslogtreecommitdiff
path: root/gnu/packages/ruby.scm
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2023-07-26 00:15:09 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2024-02-24 16:42:41 +0100
commite912866ce9e0ba179554ef4091dc81518b3245fe (patch)
tree8b16db8422699eb937a561bdfd048047cc417965 /gnu/packages/ruby.scm
parenta206fd3d2c4d9f0761e7a663ccb9534eff87cb93 (diff)
gnu: Add ruby-sfl.
* gnu/packages/ruby.scm (ruby-sfl): New variable.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r--gnu/packages/ruby.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index f4284a834bc..ece5192f166 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -12983,6 +12983,26 @@ manifest file.")
12983 (home-page "https://github.com/mvz/rake-manifest") 12983 (home-page "https://github.com/mvz/rake-manifest")
12984 (license license:expat))) 12984 (license license:expat)))
12985 12985
12986(define-public ruby-sfl
12987 (package
12988 (name "ruby-sfl")
12989 (version "2.3")
12990 (source (origin
12991 (method url-fetch)
12992 (uri (rubygems-uri "sfl" version))
12993 (sha256
12994 (base32
12995 "1qm4hvhq9pszi9zs1cl9qgwx1n4wxq0af0hq9sbf6qihqd8rwwwr"))))
12996 (build-system ruby-build-system)
12997 (arguments
12998 `(#:tests? #f ;; some tests fail, gem is a dummy for ruby >= 1.9 anyway
12999 #:test-target "spec"))
13000 (synopsis "Spawn for Ruby 1.8")
13001 (description "This pure ruby library provides @code{spawn()} which is
13002almost perfectly compatible with ruby 1.9's.")
13003 (home-page "https://github.com/ujihisa/spawn-for-legacy")
13004 (license license:bsd-2)))
13005
12986(define-public ruby-childprocess 13006(define-public ruby-childprocess
12987 (package 13007 (package
12988 (name "ruby-childprocess") 13008 (name "ruby-childprocess")