mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add ruby-coderay.
* gnu/packages/ruby.scm (ruby-coderay): New variable.
This commit is contained in:
parent
30b0b725ff
commit
2e3fdea441
1 changed files with 20 additions and 0 deletions
|
@ -866,3 +866,23 @@ (define-public ruby-method-source
|
||||||
extract comments.")
|
extract comments.")
|
||||||
(home-page "https://github.com/banister/method_source")
|
(home-page "https://github.com/banister/method_source")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-coderay
|
||||||
|
(package
|
||||||
|
(name "ruby-coderay")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "coderay" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"059wkzlap2jlkhg460pkwc1ay4v4clsmg1bp4vfzjzkgwdckr52s"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:tests? #f)) ; missing test files
|
||||||
|
(synopsis "Ruby syntax highlighting library")
|
||||||
|
(description "Coderay is a Ruby library that provides syntax highlighting
|
||||||
|
for select languages.")
|
||||||
|
(home-page "http://coderay.rubychan.de")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue