mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: Add ruby-tzinfo.
* gnu/packages/ruby.scm (ruby-tzinfo): New variable.
This commit is contained in:
parent
1415792a7c
commit
08a1b7013d
1 changed files with 20 additions and 0 deletions
|
@ -941,3 +941,23 @@ (define-public ruby-thread-safe
|
||||||
utilities for Ruby.")
|
utilities for Ruby.")
|
||||||
(home-page "https://github.com/ruby-concurrency/thread_safe")
|
(home-page "https://github.com/ruby-concurrency/thread_safe")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public ruby-tzinfo
|
||||||
|
(package
|
||||||
|
(name "ruby-tzinfo")
|
||||||
|
(version "1.2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "tzinfo" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ruby-thread-safe" ,ruby-thread-safe)))
|
||||||
|
(synopsis "Time zone library for Ruby")
|
||||||
|
(description "TZInfo is a Ruby library that provides daylight savings
|
||||||
|
aware transformations between times in different time zones.")
|
||||||
|
(home-page "http://tzinfo.github.io")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue