]> git.immae.eu Git - perso/Immae/Config/Nix.git/blob - overlays/msmtp/default.nix
Backport msmtp patch
[perso/Immae/Config/Nix.git] / overlays / msmtp / default.nix
1 self: super: {
2 msmtp = super.msmtp.overrideAttrs(old: {
3 patches = old.patches ++ [
4 (super.fetchpatch {
5 url = "https://github.com/marlam/msmtp-mirror/commit/c78f24347ec996c7a3830b48403bf3736afca071.patch";
6 sha256 = "0d4sc2f5838jriv65wahpgvwckkzqhdk3hs660fyg80si2i0l1bx";
7 })
8 ];
9 });
10 }