gnu: Add ruby-backports.
* gnu/packages/ruby.scm (ruby-backports): New variable.
This commit is contained in:
parent
1d1d20b02b
commit
f7e9b2f375
|
@ -1369,6 +1369,31 @@ User Agents.")
|
||||||
(home-page "https://github.com/gshutler/useragent")
|
(home-page "https://github.com/gshutler/useragent")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-backports
|
||||||
|
(package
|
||||||
|
(name "ruby-backports")
|
||||||
|
(version "3.11.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "backports" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1hshjxww2h7s0dk57njrygq4zpp0nlqrjfya7zwm27iq3rhc3y8g"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
'(;; TODO: This should be default, but there is one test failure
|
||||||
|
#:test-target "all_spec"))
|
||||||
|
(native-inputs
|
||||||
|
`(("ruby-mspec" ,ruby-mspec)
|
||||||
|
("ruby-activesupport" ,ruby-activesupport)))
|
||||||
|
(synopsis "Backports of the features in newer Ruby versions")
|
||||||
|
(description
|
||||||
|
"Backports enables more compatibility across Ruby versions by providing
|
||||||
|
backports of some features.")
|
||||||
|
(home-page "https://github.com/marcandre/backports")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-bacon
|
(define-public ruby-bacon
|
||||||
(package
|
(package
|
||||||
(name "ruby-bacon")
|
(name "ruby-bacon")
|
||||||
|
|
Loading…
Reference in New Issue