mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
aerc: import a patch fix a bug with gpg signed messages (#337401)
This commit is contained in:
commit
af1d241b54
@ -1,6 +1,7 @@
|
|||||||
{ lib
|
{ lib
|
||||||
, buildGoModule
|
, buildGoModule
|
||||||
, fetchFromSourcehut
|
, fetchFromSourcehut
|
||||||
|
, fetchpatch
|
||||||
, ncurses
|
, ncurses
|
||||||
, notmuch
|
, notmuch
|
||||||
, scdoc
|
, scdoc
|
||||||
@ -31,6 +32,12 @@ buildGoModule rec {
|
|||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./runtime-libexec.patch
|
./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 = ''
|
postPatch = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user