nix: depend less on the flake input mechanism

This commit is contained in:
Primrose 2024-06-29 23:42:09 +02:00
parent 939a8856a4
commit e7b6af241f
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
5 changed files with 105 additions and 753 deletions

View file

@ -0,0 +1,13 @@
_: prev: {
# https://github.com/tmux/tmux/issues/3983
# fix tmux crashing when neovim is used in a nested session
tmux = prev.tmux.overrideAttrs (oa: {
patches = (oa.patches or [ ]) ++ [
(prev.fetchpatch {
name = "sixel-patch";
url = "https://github.com/tmux/tmux/commit/aa17f0e0c1c8b3f1d6fc8617613c74f07de66fae.patch";
hash = "sha256-jhWGnC9tsGqTTA5tU+i4G3wlwZ7HGz4P0UHl17dVRU4=";
})
];
});
}