From 693f9402ddbc721d09cf258afe54781f693dda5c Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Mon, 26 Aug 2024 11:22:27 +0530 Subject: [PATCH] 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 --- pkgs/by-name/ae/aerc/package.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/by-name/ae/aerc/package.nix b/pkgs/by-name/ae/aerc/package.nix index d6697cf1558d..6291681a4fbf 100644 --- a/pkgs/by-name/ae/aerc/package.nix +++ b/pkgs/by-name/ae/aerc/package.nix @@ -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 = ''