diff options
author | Christopher Baines <mail@cbaines.net> | 2019-02-27 19:02:55 +0000 |
---|---|---|
committer | Christopher Baines <christopher.baines@digital.cabinet-office.gov.uk> | 2019-10-22 23:15:59 +0100 |
commit | 41792fb27c6e8eb997a6cafdc6817c830fe98962 (patch) | |
tree | 49538472a33f354bc1afa13c17e629c52da291b4 | |
parent | c5892d8b5b36f52711902e8f1fd2a4039a73416b (diff) | |
download | gnu-guix-41792fb27c6e8eb997a6cafdc6817c830fe98962.tar gnu-guix-41792fb27c6e8eb997a6cafdc6817c830fe98962.tar.gz |
gnu: Add ruby-fugit.
* gnu/packages/ruby.scm (ruby-fugit): New variable.
-rw-r--r-- | gnu/packages/ruby.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index bd46699558..89828a524b 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1845,6 +1845,30 @@ standard output stream.") (home-page "https://github.com/geemus/formatador") (license license:expat))) +(define-public ruby-fugit + (package + (name "ruby-fugit") + (version "1.1.8") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "fugit" version)) + (sha256 + (base32 + "1d1ivir1k33kfylyxf6c6g0bn85ia9ls6vv7qps65wfwbxqb8rv0")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) ; No included tests + (propagated-inputs + `(("ruby-et-orbi" ,ruby-et-orbi) + ("ruby-raabro" ,ruby-raabro))) + (synopsis + "Time tools for flor and the floraison project. Cron parsing and occurrence computing. Timestamps and more.") + (description + "Time tools for flor and the floraison project. Cron parsing and occurrence computing. Timestamps and more.") + (home-page "http://github.com/floraison/fugit") + (license license:expat))) + (define-public ruby-fuubar (package (name "ruby-fuubar") |