diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 23:29:29 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-26 23:29:29 +0100 |
commit | 9f3e8c045f4c8fb652fa8da0705a41eb60f05808 (patch) | |
tree | 902af10064717c03e6c37182c413f95fc0889831 /gnu/packages/golang-web.scm | |
parent | 60c96b2f77174e46bf1584aed07e662eade2c70a (diff) | |
download | guix-9f3e8c045f4c8fb652fa8da0705a41eb60f05808.tar.gz guix-9f3e8c045f4c8fb652fa8da0705a41eb60f05808.zip |
gnu: go-github-com-emersion-go-message: Move to golang-web.
* gnu/packages/golang.scm (go-github-com-emersion-go-message): Move from
here ...
* gnu/packages/golang-web.scm: ... to here.
Change-Id: I63e5b4d52142e90e64bdbf4f31cec9e18d221c24
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 3665ab73c3..007af4ef7c 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -677,6 +677,31 @@ 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-message + (package + (name "go-github-com-emersion-go-message") + (version "0.18.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/go-message") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gzcgrs5sava8fpybp5cw6f3zqnbz096wf93hcgkrg94wl1g7kqb")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/emersion/go-message")) + (propagated-inputs + (list go-golang-org-x-text)) + (home-page "https://github.com/emersion/go-message") + (synopsis "Internet messages and MIME for Go") + (description + "The message package implements the Internet Message Format and +Multipurpose Internet Mail Extensions in Go.") + (license license:expat))) + (define-public go-github-com-emicklei-go-restful (package (name "go-github-com-emicklei-go-restful") |