mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ruby-i18n.
* gnu/packages/ruby.scm (ruby-i18n): New variable.
This commit is contained in:
parent
c08f9818f9
commit
acf735f2be
1 changed files with 25 additions and 1 deletions
|
@ -29,7 +29,8 @@ (define-module (gnu packages ruby)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix build-system gnu))
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix build-system ruby))
|
||||
|
||||
(define-public ruby
|
||||
(package
|
||||
|
@ -88,3 +89,26 @@ (define-public ruby
|
|||
(home-page "https://ruby-lang.org")
|
||||
(license license:ruby)))
|
||||
|
||||
(define-public ruby-i18n
|
||||
(package
|
||||
(name "ruby-i18n")
|
||||
(version "0.6.11")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/svenfuchs/i18n/archive/v"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1fdhnhh1p5g8vibv44d770z8nq208zrms3m2nswdvr54072y1m6k"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f)) ; requires bundler
|
||||
(synopsis "Internationalization library for Ruby")
|
||||
(description "Ruby i18n is an internationalization and localization
|
||||
solution for Ruby programs. It features translation and localization,
|
||||
interpolation of values to translations, pluralization, customizable
|
||||
transliteration to ASCII, flexible defaults, bulk lookup, lambdas as
|
||||
translation data, custom key/scope separator, custom exception handlers, and
|
||||
an extensible architecture with a swappable backend.")
|
||||
(home-page "http://github.com/svenfuchs/i18n")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue