mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
tmux: apply upstream sixel patch
This fixes the issue where tmux would exit unexpectedly, when using neovim 0.10.0 over SSH. Upstream issues: https://github.com/tmux/tmux/issues/3983 https://github.com/neovim/neovim/issues/28082
This commit is contained in:
parent
e2c22462ec
commit
55bb26cb73
|
@ -48,6 +48,12 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
url = "https://github.com/tmux/tmux/commit/4f5a944ae3e8f7a230054b6c0b26f423fa738e71.patch";
|
||||
hash = "sha256-HlUeU5ZicPe7Ya8A1HpunxfVOE2BF6jOHq3ZqTuU5RE=";
|
||||
})
|
||||
# https://github.com/tmux/tmux/issues/3983
|
||||
# fix tmux crashing when neovim is used in a ssh session
|
||||
(fetchpatch {
|
||||
url = "https://github.com/tmux/tmux/commit/aa17f0e0c1c8b3f1d6fc8617613c74f07de66fae.patch";
|
||||
hash = "sha256-jhWGnC9tsGqTTA5tU+i4G3wlwZ7HGz4P0UHl17dVRU4=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
|
Loading…
Reference in a new issue