all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: David Thompson <dthompson2@worcester.edu>
To: guix-devel@gnu.org
Subject: [PATCH 3/3] gnu: Add ruby-i18n.
Date: Sun, 28 Sep 2014 11:22:40 -0400	[thread overview]
Message-ID: <1411917760-28557-3-git-send-email-dthompson2@worcester.edu> (raw)
In-Reply-To: <1411917760-28557-1-git-send-email-dthompson2@worcester.edu>

* gnu/packages/ruby.scm (ruby-i18n): New variable.
---
 gnu/packages/ruby.scm | 26 +++++++++++++++++++++++++-
 1 file changed, 25 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index cded7e9..ac751f5 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -29,7 +29,8 @@
   #: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 @@ a focus on simplicity and productivity.")
     (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)))
-- 
2.1.0

  parent reply	other threads:[~2014-09-28 15:23 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-28 15:22 [PATCH 1/3] gnu: Add ruby David Thompson
2014-09-28 15:22 ` [PATCH 2/3] build: Add ruby build system David Thompson
2014-09-28 15:41   ` David Thompson
2014-09-28 15:50   ` Ludovic Courtès
2014-09-28 16:25     ` David Thompson
2014-09-28 18:59       ` Ludovic Courtès
2014-09-28 15:22 ` David Thompson [this message]
2014-09-28 15:50   ` [PATCH 3/3] gnu: Add ruby-i18n Ludovic Courtès
2014-10-01 19:28   ` Ludovic Courtès
2014-10-01 19:49     ` Thompson, David
2014-10-02  8:35       ` Ludovic Courtès
2014-09-28 15:46 ` [PATCH 1/3] gnu: Add ruby Ludovic Courtès
2014-09-28 19:24 ` David Thompson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1411917760-28557-3-git-send-email-dthompson2@worcester.edu \
    --to=dthompson2@worcester.edu \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.