diff options
author | Ashish SHUKLA <ashish.is@lostca.se> | 2024-10-01 10:52:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-10-15 18:40:10 +0200 |
commit | 377359315fbb0e1414354910ba3a14c145fdc519 (patch) | |
tree | a7e3b8cf3d142b332ac525f29ab69e36abadfdc7 | |
parent | 38a28e7447cca09291ee83209f447437cfbdfff5 (diff) | |
download | guix-377359315fbb0e1414354910ba3a14c145fdc519.tar guix-377359315fbb0e1414354910ba3a14c145fdc519.tar.gz |
gnu: aerc: Add a patch for bug with signed messages.
* gnu/packages/mail.scm (aerc): (source)[origin]<patches>: Add patch.
Change-Id: I9e080662854b93022255f53e9f6eff11a2c934a3
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/mail.scm | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index e4316831d0..ead8740627 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -5071,7 +5071,18 @@ remote SMTP server.") (file-name (git-file-name name version)) (sha256 (base32 - "0y34cv2vcwhr0vbd1ax2hv9rmv79dp9i02y2xqyr23krfb5bp197")))) + "0y34cv2vcwhr0vbd1ax2hv9rmv79dp9i02y2xqyr23krfb5bp197")) + (patches + (list + ;; patch from upstream to fix encoding problem with sending + ;; gpg-signed messages + ;; see https://todo.sr.ht/~rjarry/aerc/79 + (origin + (method url-fetch) + (uri "https://git.sr.ht/~rjarry/aerc/commit/7346d20.patch") + (file-name "aerc-fix-gpg-signed-message-encoding.patch") + (sha256 (base32 + "14avr323sr9qipf9d7npqwrzq37i9946z9m6jdkzi8n9rs6zwzq9"))))))) (build-system go-build-system) (arguments (list #:import-path "git.sr.ht/~rjarry/aerc" |