diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2018-02-05 11:45:53 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-05-18 11:54:02 +0100 |
commit | 8f7ac455a0a40c910cde67f54edfa343d5062658 (patch) | |
tree | f6dabebad22b3c6cdca4d471c85c5207f5a807b6 | |
parent | 703746ec0e54d77c2daf41517368f28a6dcd4a51 (diff) | |
download | guix-8f7ac455a0a40c910cde67f54edfa343d5062658.tar guix-8f7ac455a0a40c910cde67f54edfa343d5062658.tar.gz |
gnu: Add ruby-kramdown..
-rw-r--r-- | gnu/packages/ruby.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 448641faa9..c1e571c6a9 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -5970,3 +5970,28 @@ will probably be an issue and hence this gem.") (home-page "http://github.com/thoughtbot/appraisal") (license license:expat))) + +(define-public ruby-kramdown + (package + (name "ruby-kramdown") + (version "1.9.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "kramdown" version)) + (sha256 + (base32 + "12sral2xli39mnr4b9m2sxdlgam4ni0a1mkxawc5311z107zj3p0")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-prawn" ,ruby-prawn))) + (synopsis + "kramdown is yet-another-markdown-parser but fast, pure Ruby, +using a strict syntax definition and supporting several common extensions. +") + (description + "kramdown is yet-another-markdown-parser but fast, pure Ruby, +using a strict syntax definition and supporting several common extensions. +") + (home-page "http://kramdown.gettalong.org") + (license license:expat))) |