me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-locale.

* gnu/packages/ruby.scm (ruby-locale): New variable.
master
Ricardo Wurmus 2015-11-20 12:09:45 +01:00
parent f88bacaf6f
commit 347eb21e1d
1 changed files with 25 additions and 0 deletions

View File

@ -965,6 +965,31 @@ assertion messages for tests.")
(home-page "https://github.com/k-tsj/power_assert")
(license (list license:bsd-2 license:ruby))))
(define-public ruby-locale
(package
(name "ruby-locale")
(version "2.1.2")
(source (origin
(method url-fetch)
(uri (rubygems-uri "locale" version))
(sha256
(base32
"1sls9bq4krx0fmnzmlbn64dw23c4d6pz46ynjzrn9k8zyassdd0x"))))
(build-system ruby-build-system)
;; ruby-test-unit is required to run tests, but that needs ruby-packnga,
;; which needs ruby-gettext, which needs ruby-locale. To break the
;; dependency cycle we disable tests.
(arguments `(#:tests? #f))
(native-inputs
`(("bundler" ,bundler)
("ruby-yard" ,ruby-yard)))
(synopsis "Ruby library providing basic localization APIs")
(description
"Ruby-Locale is the pure ruby library which provides basic APIs for
localization.")
(home-page "https://github.com/ruby-gettext/locale")
(license (list license:lgpl3+ license:ruby))))
(define-public ruby-minitest
(package
(name "ruby-minitest")