3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add ruby-rdoc.

* gnu/packages/ruby.scm (ruby-rdoc): New variable.
This commit is contained in:
Julien Lepiller 2018-08-26 13:42:29 +02:00
parent f22c038799
commit 6bba8ecf7b
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -5208,3 +5208,24 @@ your application.")
(sha256
(base32
"1h39zqqxp3k4qk49ajpx0jps1vmvxgkh43mqkb6znk583bl0fv71"))))))
(define-public ruby-rdoc
(package
(name "ruby-rdoc")
(version "6.0.4")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "rdoc" version))
(sha256
(base32
"0anv42cqcdc6g4n386mrva7mgav5i0c2ry3yzvzzc6z6hymkmcr7"))))
(build-system ruby-build-system)
(native-inputs
`(("bundler" ,bundler)))
(home-page "https://ruby.github.io/rdoc/")
(synopsis "HTML and command-line documentation utility")
(description "RDoc produces HTML and command-line documentation for Ruby
projects. RDoc includes the +rdoc+ and +ri+ tools for generating and displaying
documentation from the command-line.")
(license license:gpl2+)))