mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: go-github-com-yuin-goldmark: Move to golang-build.
* gnu/packages/golang.scm (go-github-com-yuin-goldmark): Move from here ... * gnu/packages/golang-build.scm: ... to here. Change-Id: If553b4a00b288a913d1d54da8b5b52eab87bb277
This commit is contained in:
parent
de36ec1480
commit
faabd385eb
2 changed files with 22 additions and 21 deletions
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2020 Danny Milosavljevic <dannym@scratchpost.org>
|
||||
;;; Copyright © 2020 HiPhish <hiphish@posteo.de>
|
||||
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||
;;; Copyright © 2020 Vagrant Cascadian <vagrant@debian.org>
|
||||
;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
|
||||
|
@ -51,6 +52,27 @@ (define-module (gnu packages golang-build)
|
|||
;;;
|
||||
;;; Code:
|
||||
|
||||
(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)))
|
||||
|
||||
(define-public go-golang-org-x-exp
|
||||
(package
|
||||
(name "go-golang-org-x-exp")
|
||||
|
|
|
@ -7946,27 +7946,6 @@ (define-public go-github-com-olekukonko-ts
|
|||
size of the terminal.")
|
||||
(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)))
|
||||
|
||||
(define-public go-github-com-charmbracelet-glamour
|
||||
(package
|
||||
(name "go-github-com-charmbracelet-glamour")
|
||||
|
|
Loading…
Reference in a new issue