diff options
Diffstat (limited to 'overlays/msmtp')
-rw-r--r-- | overlays/msmtp/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/overlays/msmtp/default.nix b/overlays/msmtp/default.nix new file mode 100644 index 00000000..453a6b9a --- /dev/null +++ b/overlays/msmtp/default.nix | |||
@@ -0,0 +1,10 @@ | |||
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 | } | ||