commit f8cfb4a1b176c9a1421e5225659dfcdf3932e9e8
parent 37d845421cda9502ff41184b8122623457b753c2
Author: William Casarin <jb55@jb55.com>
Date: Wed, 10 Feb 2021 15:06:28 -0800
nix: patch neomutt to always show cursor
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/nix-config/nixpkgs/config.nix b/nix-config/nixpkgs/config.nix
@@ -52,6 +52,12 @@ in {
];
});
+ neomutt = pkgs.lib.overrideDerivation super.neomutt (attrs: {
+ postConfigure = ''
+ sed -i '/HAVE_CURS_SET 1/d' config.h
+ '';
+ });
+
weechat = super.weechat.override {configure = {availablePlugins, ...}: {
scripts = with super.weechatScripts; [ wee-slack ];
};