mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Add ghc-cmark.
* gnu/packages/haskell.scm (ghc-cmark): New variable.
This commit is contained in:
parent
66c480b6c8
commit
31be270b93
1 changed files with 25 additions and 0 deletions
|
@ -5108,6 +5108,31 @@ (define-public ghc-highlighting-kate
|
|||
descriptions.")
|
||||
(license gpl2+)))
|
||||
|
||||
(define-public ghc-cmark
|
||||
(package
|
||||
(name "ghc-cmark")
|
||||
(version "0.4.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://hackage.haskell.org/package/"
|
||||
"cmark/cmark-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0c134qh65viaq4q6pv7bnnr5wchzivg94nv0dj8pc1326sx0dw12"))))
|
||||
(build-system haskell-build-system)
|
||||
(propagated-inputs
|
||||
`(("ghc-text" ,ghc-text)))
|
||||
(native-inputs
|
||||
`(("ghc-hunit" ,ghc-hunit)))
|
||||
(home-page "https://github.com/jgm/commonmark-hs")
|
||||
(synopsis "Fast, accurate CommonMark (Markdown) parser and renderer")
|
||||
(description
|
||||
"This package provides Haskell bindings for
|
||||
@uref{https://github.com/jgm/cmark, libcmark}, the reference parser for
|
||||
CommonMark, a fully specified variant of Markdown. It includes sources for
|
||||
libcmark (0.21.0) and does not require prior installation of the C library.")
|
||||
(license bsd-3)))
|
||||
|
||||
(define-public idris
|
||||
(package
|
||||
(name "idris")
|
||||
|
|
Loading…
Reference in a new issue