[NixOS] Use gnupg 2_4_0 to avoid hanging emacs in loop when writing

This commit is contained in:
2023-08-03 20:47:12 -06:00
parent 87842d31cf
commit bd3eb57de3
3 changed files with 20 additions and 2 deletions

View File

@@ -23,4 +23,14 @@ final: prev: {
hash = "sha256-v0rr1s32jj79A8IGfJgSGJVlz7rSnZYn4ealOpqee0w=";
};
});
gnupg_2_4_0 = prev.gnupg.overrideAttrs(_: rec {
pname = "gnupg";
# 2.4.1 breaks emacs
version = "2.4.0";
src = prev.fetchurl {
url = "mirror://gnupg/gnupg/${pname}-${version}.tar.bz2";
hash = "sha256-HXkVjdAdmSQx3S4/rLif2slxJ/iXhOosthDGAPsMFIM=";
};
});
}