diff options
author | Christopher Baines <mail@cbaines.net> | 2019-01-27 16:42:21 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-02-14 21:37:57 +0000 |
commit | 65f6588904368e126a5b14985df7045588c2f668 (patch) | |
tree | 3f77bcc360f2d882f50affea36f3e11a8601d8de /gnu/packages/ruby.scm | |
parent | 79193b2097fe6643c3597d778bca3850e90a0ac1 (diff) | |
download | guix-65f6588904368e126a5b14985df7045588c2f668.tar guix-65f6588904368e126a5b14985df7045588c2f668.tar.gz |
gnu: Add ruby-bacon-colored-output.
This is a requirement of ruby-ast.
* gnu/packages/ruby.scm (ruby-bacon-colored-output): New variable.
Diffstat (limited to 'gnu/packages/ruby.scm')
-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 1eb52811e9..e4ac6cc861 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1536,6 +1536,30 @@ disable tests, have before and after blocks that run once and more.") (home-page "https://github.com/cldwalker/bacon-bits") (license license:expat))) +(define-public ruby-bacon-colored-output + (package + (name "ruby-bacon-colored-output") + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "bacon-colored_output" version)) + (sha256 + (base32 + "1znyh3vkfdlmf19p3k4zip88ibym41dn5g4p4n5hmks2iznb7qpx")))) + (build-system ruby-build-system) + (arguments + '(;; No included tests + #:tests? #f)) + (propagated-inputs + `(("ruby-bacon" ,ruby-bacon))) + (synopsis "Colored output for Bacon test framework") + (description + "This package adds color through ANSI escape codes to Bacon test +output.") + (home-page "https://github.com/whitequark/bacon-colored_output") + (license license:expat))) + (define-public ruby-connection-pool (package (name "ruby-connection-pool") |