summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-17 21:48:54 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-02-17 21:59:33 +0000
commit999dc6b96f0bce06342c76fcdea8a47544e60b4e (patch)
treeb454bf809b9f0d02b5877a386deb63ff2982197e
parent2b94ea3880d156e4ab570c42bdcdf772d959890c (diff)
gnu: sendgmail: Improve package style.
* gnu/packages/mail.scm (sendgmail): Re order fields and use list style. [arguments] <install-source?>: No need for source as it's a final command. <tests?>: No tests in upstream. [home-page]: Fix it. Change-Id: I5263a0a44b65d19ffda815069891f772be5e34b6
-rw-r--r--gnu/packages/mail.scm18
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index f314ae3caf3..0ad10feba46 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -5047,16 +5047,18 @@ feeds, converts them into emails, and sends them.")
"sendgmail-remove-domain-restriction.patch"
"sendgmail-accept-ignored-gsuite-flag.patch"))
(sha256
- (base32
- "1cxpkiaajhq1gjsg47r2b5xgck0r63pvkyrkm7af8c8dw7fyn64f"))))
- (inputs
- (list go-golang-org-x-oauth2 go-cloud-google-com-go-compute-metadata))
+ (base32 "1cxpkiaajhq1gjsg47r2b5xgck0r63pvkyrkm7af8c8dw7fyn64f"))))
(build-system go-build-system)
(arguments
- '(#:unpack-path "github.com/google/gmail-oauth2-tools"
- #:import-path "github.com/google/gmail-oauth2-tools/go/sendgmail"))
- (home-page
- "https://github.com/google/gmail-oauth2-tools/tree/master/go/sendgmail")
+ (list
+ #:install-source? #f
+ #:tests? #f ; no tests
+ #:unpack-path "github.com/google/gmail-oauth2-tools"
+ #:import-path "github.com/google/gmail-oauth2-tools/go/sendgmail"))
+ (inputs
+ (list go-golang-org-x-oauth2
+ go-cloud-google-com-go-compute-metadata))
+ (home-page "https://github.com/google/gmail-oauth2-tools")
(synopsis
"Sendmail-compatible tool for using Gmail with @code{git send-email}")
(description