diff options
-rw-r--r-- | gnu/packages/golang.scm | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 894e878cf2..803318b7e9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4474,7 +4474,7 @@ fast and distributable command line applications in an expressive way.") (arguments '(#:import-path "github.com/cpuguy83/go-md2man")) (propagated-inputs - (list go-github-com-russross-blackfriday)) + (list go-github-com-russross-blackfriday-v2)) (home-page "https://github.com/cpuguy83/go-md2man") (synopsis "Convert markdown into roff") (description "Go-md2man is a Go program that converts markdown to roff for @@ -4511,7 +4511,7 @@ source file.") (define-public go-github-com-russross-blackfriday (package (name "go-github-com-russross-blackfriday") - (version "2.0.1") + (version "1.6.0") (source (origin (method git-fetch) @@ -4521,7 +4521,7 @@ source file.") (file-name (git-file-name name version)) (sha256 (base32 - "0nlz7isdd4rgnwzs68499hlwicxz34j2k2a0b8jy0y7ycd2bcr5j")))) + "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp")))) (build-system go-build-system) (arguments '(#:import-path "github.com/russross/blackfriday")) @@ -4534,6 +4534,23 @@ source file.") (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-rubyist-tracerx (let ((commit "787959303086f44a8c361240dfac53d3e9d53ed2") (revision "0")) |