[bug#57326,4/7] gnu: Add go-github-com-emersion-go-mbox.
Commit Message
* gnu/packages/golang.scm (go-github-com-emersion-go-mbox): New variable.
---
gnu/packages/golang.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
Comments
On Mon Aug 22, 2022 at 12:43 AM BST, Cairn via Guix-patches via wrote:
> + (arguments
> + `(#:import-path "github.com/emersion/go-mbox"))
Convert this to list style.
> + (description "This package parses the mbox file format into messages
> +and formats messages into mbox files.")
(description
"yadda yadda")
-- (
@@ -9965,3 +9965,25 @@ (define-public go-github-com-emersion-go-bcrypt
hashing implemented in Go. This modification adds the
GenerateFromPasswordAndSalt function.")
(license license:bsd-3))))
+
+(define-public go-github-com-emersion-go-mbox
+ (package
+ (name "go-github-com-emersion-go-mbox")
+ (version "1.0.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/emersion/go-mbox")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0vnadh2khx7sxn0irrd8gz8ra02x7ij0q8zglq3rqffqil06nliv"))))
+ (build-system go-build-system)
+ (arguments
+ `(#:import-path "github.com/emersion/go-mbox"))
+ (home-page "https://github.com/emersion/go-mbox")
+ (synopsis "Go library for the mbox file format")
+ (description "This package parses the mbox file format into messages
+and formats messages into mbox files.")
+ (license license:expat)))