guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

29/60: gnu: Add go-github-com-yuin-goldmark.


From: guix-commits
Subject: 29/60: gnu: Add go-github-com-yuin-goldmark.
Date: Sun, 9 Aug 2020 10:24:58 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 5e8a102f873f49a4baa031fd374e76ae0eb99cf5
Author: Oleg Pykhalov <go.wigust@gmail.com>
AuthorDate: Sun Aug 9 01:08:21 2020 +0300

    gnu: Add go-github-com-yuin-goldmark.
    
    * gnu/packages/golang.scm (go-github-com-yuin-goldmark): New variable.
---
 gnu/packages/golang.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 48a3ed9..e6cb50f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4957,3 +4957,24 @@ escape sequences and color conversions.")
 @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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]