gnu: Add go-github-com-yuin-goldmark.
* gnu/packages/golang.scm (go-github-com-yuin-goldmark): New variable.
This commit is contained in:
parent
f63b2dd7db
commit
5e8a102f87
1 changed files with 21 additions and 0 deletions
|
@ -4957,3 +4957,24 @@ (define-public go-github-com-olekukonko-tablewriter
|
|||
@item optional reflowing of paragrpahs in multi-line cells
|
||||
@end itemize\n")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-yuin-goldmark
|
||||
(package
|
||||
(name "go-github-com-yuin-goldmark")
|
||||
(version "1.2.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/yuin/goldmark")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"12rsnsf65drcp0jfw2jl9w589vsn3pxdk1zh3v9q908iigngrcmy"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
`(#:import-path "github.com/yuin/goldmark"))
|
||||
(home-page "https://github.com/yuin/goldmark/")
|
||||
(synopsis "Markdown parser")
|
||||
(description "This package provides a markdown parser.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue