gnu: Add go-github-com-emersion-go-imap.

* gnu/packages/golang.scm (go-github-com-emersion-go-imap): New
variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Martin Becze 2019-10-01 17:37:07 -04:00 committed by Efraim Flashner
parent bffb8f3c5f
commit 48ee9aa461
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3667,6 +3667,31 @@ (define-public go-github-com-ddevault-go-libvterm
"This is a fork of another go-libvterm library for use with aerc.")
(license license:expat))))
(define-public go-github-com-emersion-go-imap
(package
(name "go-github-com-emersion-go-imap")
(version "1.0.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/emersion/go-imap")
(commit (string-append "v" version))))
(sha256
(base32
"1id8j2d0rn9sj8y62xhyygqpk5ygrcl9jlfx92sm1jsvxsm3kywq"))
(file-name (git-file-name name version))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/emersion/go-imap"))
(native-inputs
`(("go-golang-org-x-text" ,go-golang-org-x-text)))
(home-page "https://github.com/emersion/go-imap")
(synopsis "IMAP4rev1 library written in Go")
(description "This package provides an IMAP4rev1 library written in Go. It
can be used to build a client and/or a server.")
(license license:expat)))
(define-public go-github-com-fatih-color
(package
(name "go-github-com-fatih-color")