europa: install aerc with paste patch

This commit is contained in:
Aaron Bieber 2022-12-19 06:10:04 -07:00
parent 7d75ad2503
commit a5e4f2c24f
No known key found for this signature in database
2 changed files with 14 additions and 1 deletions

View File

@ -155,6 +155,7 @@ in {
};
environment.systemPackages = with pkgs; [
aerc
git-credential-1password
arcanPackages.all-wrapped
barrier

View File

@ -2,7 +2,19 @@
{
nixpkgs.overlays = if isUnstable then
[ ]
[
(self: super: {
aerc = super.aerc.overrideAttrs (old: {
patches = [
(pkgs.fetchurl {
url =
"https://lists.sr.ht/~rjarry/aerc-devel/%3C20221218160541.680374-1-moritz%40poldrack.dev%3E/raw";
sha256 = "sha256-qPRMOuPs5Pxiu2p08vGxsoO057Y1rVltPyBMbJXsH1s=";
})
];
});
})
]
else
[
(self: super: {