mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add guile-commonmark
* gnu/packages/guile.scm (guile-commonmark): New variable.
This commit is contained in:
parent
f467c35261
commit
e28e74a518
1 changed files with 25 additions and 0 deletions
|
@ -1180,4 +1180,29 @@ (define-public guile-daemon
|
||||||
you send to a FIFO file.")
|
you send to a FIFO file.")
|
||||||
(license gpl3+)))
|
(license gpl3+)))
|
||||||
|
|
||||||
|
(define-public guile-commonmark
|
||||||
|
(package
|
||||||
|
(name "guile-commonmark")
|
||||||
|
(version "0.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/OrangeShark/" name
|
||||||
|
"/releases/download/v" version
|
||||||
|
"/" name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"12cb5fqvvgc87f5xp0ih5az305wnjia89l5jba83d0r2p8bfy0b0"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs
|
||||||
|
`(("guile" ,guile-2.0)))
|
||||||
|
(synopsis "CommonMark parser for Guile")
|
||||||
|
(description
|
||||||
|
"guile-commonmark is a library for parsing CommonMark, a fully specified
|
||||||
|
variant of Markdown. The library is written in Guile Scheme and is designed
|
||||||
|
to transform a CommonMark document to SXML. guile-commonmark tries to closely
|
||||||
|
follow the @uref{http://commonmark.org/, CommonMark spec}, the main difference
|
||||||
|
is no support for parsing block and inline level HTML.")
|
||||||
|
(home-page "https://github.com/OrangeShark/guile-commonmark")
|
||||||
|
(license lgpl3+)))
|
||||||
|
|
||||||
;;; guile.scm ends here
|
;;; guile.scm ends here
|
||||||
|
|
Loading…
Reference in a new issue