mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: Add go-github-com-emersion-go-mbox.
* gnu/packages/golang.scm (go-github-com-emersion-go-mbox): New variable. Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
parent
46fbb3e498
commit
bba6ad665a
1 changed files with 23 additions and 0 deletions
|
@ -6898,6 +6898,29 @@ (define-public go-github-com-emersion-go-msgauth
|
|||
"This package provides a Go library for authenticating emails.")
|
||||
(license license:expat)))
|
||||
|
||||
(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
|
||||
(list #:import-path "github.com/emersion/go-mbox"))
|
||||
(home-page "https://github.com/emersion/go-mbox")
|
||||
(synopsis "Go library for handling @code{mbox} files")
|
||||
(description
|
||||
"This package provides a library for parsing and formatting
|
||||
@code{mbox} files.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-fatih-color
|
||||
(package
|
||||
(name "go-github-com-fatih-color")
|
||||
|
|
Loading…
Reference in a new issue