nixpkgs/pkgs/misc/tmux-plugins/tmux-thumbs/default.nix
2023-12-12 17:37:17 +00:00

18 lines
279 B
Nix

{ mkTmuxPlugin, thumbs, substituteAll }:
mkTmuxPlugin {
inherit (thumbs) version src meta;
pluginName = thumbs.src.repo;
rtpFilePath = "tmux-thumbs.tmux";
patches = [
(substituteAll {
src = ./fix.patch;
tmuxThumbsDir = "${thumbs}/bin";
})
];
}