raghavgururajan pushed a commit to branch master
in repository guix.
commit eca45904e6165f8e088174c6e48d39e413f0cdac
Author: (unmatched-parenthesis <[email protected]>
AuthorDate: Fri Oct 21 22:11:14 2022 +0100
gnu: Add go-github-com-emersion-go-message.
* gnu/packages/golang.scm (go-github-com-emersion-go-message): New
variable.
Signed-off-by: Raghav Gururajan <[email protected]>
---
gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1b24216669..16f721f0af 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -10659,6 +10659,31 @@ using shell-style rules for quoting and commenting.")
email library.")
(license license:gpl3+)))
+(define-public go-github-com-emersion-go-message
+ (package
+ (name "go-github-com-emersion-go-message")
+ (version "0.16.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emersion/go-message")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1j5qdhsna28xcs843zsiccw700rld5hin466dl0n3a0ax1w13ay0"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/emersion/go-message"))
+ (propagated-inputs (list go-golang-org-x-text
+ go-github-com-emersion-go-textwrapper))
+ (home-page "https://github.com/emersion/go-message")
+ (synopsis "Internet messages and MIME for Go")
+ (description
+ "The message package implements the Internet Message Format and
Multipurpose
+Internet Mail Extensions in Go.")
+ (license license:expat)))
+
(define-public go-github-com-jaytaylor-html2text
(package
(name "go-github-com-jaytaylor-html2text")