depot/third_party/nixpkgs/pkgs/misc/tmux-plugins/tmux-thumbs/default.nix

21 lines
286 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";
})
];
}