citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 913b3969942eaafd81574c59e4d58751efeaa010
parent faafcc92dfe26355097e73f0d094fe04474dba78
Author: William Casarin <jb55@jb55.com>
Date:   Sat, 19 Sep 2020 12:08:41 -0700

nix/msmtp: upload conn test patch

Diffstat:
Mnix-config/nixpkgs/config.nix | 12++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/nix-config/nixpkgs/config.nix b/nix-config/nixpkgs/config.nix @@ -25,10 +25,14 @@ in { inherit pkgs; }; - - #msmtp = pkgs.lib.overrideDerivation super.msmtp (attrs: { - # patches = [ /home/jb55/dev/msmtp-1.8.3/msmtpq-custom-conn-test.patch ]; - #}); + msmtp = pkgs.lib.overrideDerivation super.msmtp (attrs: { + patches = [ + (super.fetchurl { + url = "https://jb55.com/s/msmtpq-custom-conn-test.patch"; + sha256 = "4d342ea9e757fe5f3fd939479c4b619dcc9630ba9d0bdacf5ccfec9b5b67b861"; + }) + ]; + }); weechat = super.weechat.override {configure = {availablePlugins, ...}: { scripts = with super.weechatScripts; [ wee-slack ];