aerc: import a patch fix a bug with gpg signed messages

The mentioned patch[0] is already upstream, and can be removed when
the derivation is updated to the next release.

[0] https://lists.sr.ht/~rjarry/aerc-devel/patches/54675
This commit is contained in:
Ashish SHUKLA 2024-08-26 11:22:27 +05:30
parent ae815cee91
commit 693f9402dd
No known key found for this signature in database

View File

@ -1,6 +1,7 @@
{ lib
, buildGoModule
, fetchFromSourcehut
, fetchpatch
, ncurses
, notmuch
, scdoc
@ -31,6 +32,12 @@ buildGoModule rec {
patches = [
./runtime-libexec.patch
# patch to fix a encoding problem with gpg signed messages
(fetchpatch {
url ="https://git.sr.ht/~rjarry/aerc/commit/7346d20.patch";
hash = "sha256-OCm8BcovYN2IDSgslZklQxkGVkSYQ8HLCrf2+DRB2mM=";
})
];
postPatch = ''