mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add ruby-kramdown.
* gnu/packages/ruby.scm (ruby-kramdown): New variable.
This commit is contained in:
parent
197ca8ecd2
commit
0312706955
1 changed files with 23 additions and 0 deletions
|
@ -5611,3 +5611,26 @@ definitions.")
|
|||
(synopsis "Tables support for Prawn")
|
||||
(description "This gem provides tables support for Prawn.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public ruby-kramdown
|
||||
(package
|
||||
(name "ruby-kramdown")
|
||||
(version "1.17.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "kramdown" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1n1c4jmrh5ig8iv1rw81s4mw4xsp4v97hvf8zkigv4hn5h542qjq"))))
|
||||
(build-system ruby-build-system)
|
||||
(arguments `(#:tests? #f)); FIXME: some test failures
|
||||
(native-inputs
|
||||
`(("ruby-prawn" ,ruby-prawn)
|
||||
("ruby-prawn-table" ,ruby-prawn-table)))
|
||||
(home-page "https://kramdown.gettalong.org/")
|
||||
(synopsis "Markdown parsing and converting library")
|
||||
(description "Kramdown is a library for parsing and converting a superset
|
||||
of Markdown. It is completely written in Ruby, supports standard Markdown
|
||||
(with some minor modifications) and various extensions that have been made
|
||||
popular by the PHP @code{Markdown Extra} package and @code{Maruku}.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue