diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:55:07 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-05-18 11:54:03 +0100 |
commit | 899c58f858e48c409d547442d34e63b63f8a66c6 (patch) | |
tree | 1f99dae44c080c30ffdfc777bf5a73e933fdf30d | |
parent | b2f0d52d10996260b3dc7185c0c1e7689e36acfa (diff) | |
download | guix-899c58f858e48c409d547442d34e63b63f8a66c6.tar guix-899c58f858e48c409d547442d34e63b63f8a66c6.tar.gz |
gnu: Add ruby-globalid.
-rw-r--r-- | gnu/packages/ruby.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 64793ac065..e70733d5a4 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -6745,3 +6745,26 @@ minutes of work. "This package provides a really Ruby Mail handler.") (home-page "https://github.com/mikel/mail") (license license:expat))) + +(define-public ruby-globalid + (package + (name "ruby-globalid") + (version "0.3.6") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "globalid" version)) + (sha256 + (base32 + "145xrpsfx1qqjy33r6qa588wb16dvdhxzj2aysh755vhg6hgm291")))) + (build-system ruby-build-system) + (arguments + `(#:tests? #f)) + (propagated-inputs + `(("ruby-activesupport" ,ruby-activesupport))) + (synopsis + "URIs for your models makes it easy to pass references around.") + (description + "URIs for your models makes it easy to pass references around.") + (home-page "http://www.rubyonrails.org") + (license license:expat))) |