gnu: go-github-com-emersion-go-mbox: Move to golang-web.

* gnu/packages/golang.scm (go-github-com-emersion-go-mbox): Move from
here ...
* gnu/packages/golang-web.scm: ... to here.

Change-Id: Ib367bdb08a6989c73eb00c92b830af8e7b47a1b8
This commit is contained in:
Sharlatan Hellseher 2024-07-28 22:33:49 +01:00
parent 7a8126e107
commit 110644260c
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 24 additions and 23 deletions

View file

@ -822,6 +822,30 @@ used to build IMAP clients and servers.")
"This package provides an interface to mailboxes in the Maildir format.")
(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-emersion-go-message
(package
(name "go-github-com-emersion-go-message")