1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 11:30:44 +02:00

gnu: go-github-com-russross-blackfriday: Move to golang-xyz.

* gnu/packages/golang.scm (go-github-com-russross-blackfriday,
go-github-com-russross-blackfriday-v2): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.

Change-Id: I004efdcd797da670a87e2f319b4df1b072e5bf10
This commit is contained in:
Sharlatan Hellseher 2024-11-23 21:13:43 +00:00
parent ea10355d35
commit 5eaf8fdd9f
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 44 additions and 43 deletions

View file

@ -6801,6 +6801,50 @@ Included are the following:
logging.")
(license license:expat)))
(define-public go-github-com-russross-blackfriday
(package
(name "go-github-com-russross-blackfriday")
(version "1.6.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/russross/blackfriday")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp"))))
(build-system go-build-system)
(arguments
(list #:import-path "github.com/russross/blackfriday"))
(native-inputs
(list go-github-com-pmezard-go-difflib))
(propagated-inputs
(list go-github-com-shurcool-sanitized-anchor-name))
(home-page "https://github.com/russross/blackfriday")
(synopsis "Markdown processor in Go")
(description
"Blackfriday is a Markdown processor in Go.")
(license license:bsd-2)))
(define-public go-github-com-russross-blackfriday-v2
(package
(inherit go-github-com-russross-blackfriday)
(name "go-github-com-russross-blackfriday-v2")
(version "2.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/russross/blackfriday")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7"))))
(arguments
(list #:import-path "github.com/russross/blackfriday/v2"))))
(define-public go-github-com-ryanuber-columnize
(package
(name "go-github-com-ryanuber-columnize")