diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-28 22:17:10 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-28 22:36:58 +0100 |
commit | 0b569a6c2db33c5d92ed0fcffafc3beabbc9a2ab (patch) | |
tree | 46d47570385410499874e9ae74c91e05482c1df5 /gnu/packages/golang-web.scm | |
parent | 07420241df3fa3001a606724eb1e281a83989e6e (diff) | |
download | guix-0b569a6c2db33c5d92ed0fcffafc3beabbc9a2ab.tar.gz guix-0b569a6c2db33c5d92ed0fcffafc3beabbc9a2ab.zip |
gnu: go-github-com-emersion-go-imap: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-emersion-go-imap): Move from
here ...
* gnu/packages/golang-web.scm: ... to here.
Change-Id: I86e6b6b901359657dfafe6af65231405cc110514
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 0bea9afb7d..fb07dbfe07 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -715,6 +715,34 @@ and stop increasing when a certain threshold is met.") go-golang-org-x-net go-golang-org-x-oauth2)))) +(define-public go-github-com-emersion-go-imap + (package + (name "go-github-com-emersion-go-imap") + (version "1.2.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/go-imap") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ak2ysvfcc9w0g1070msis8x9sh6gzvf0nd65ks594siwbmqddw8")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/emersion/go-imap")) + (propagated-inputs + (list go-golang-org-x-text + go-github-com-emersion-go-sasl + go-github-com-emersion-go-message)) + (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 IMAP clients and servers.") + (license license:expat))) + (define-public go-github-com-emersion-go-message (package (name "go-github-com-emersion-go-message") |