diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-24 23:49:33 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:05:00 +0200 |
commit | 63fbfda29a0f1f1185f845ddea70fc81ae4a348c (patch) | |
tree | 866d7b0ba934cd336aea423419721aec0eeabcc5 /overlays/msmtp | |
parent | dd4a3095d7296a2528d1e01bf5e9af2faba91bc0 (diff) | |
download | NUR-63fbfda29a0f1f1185f845ddea70fc81ae4a348c.tar.gz NUR-63fbfda29a0f1f1185f845ddea70fc81ae4a348c.tar.zst NUR-63fbfda29a0f1f1185f845ddea70fc81ae4a348c.zip |
Backport msmtp patch
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 | } | ||