about summary refs log tree commit diff
path: root/pkgs/misc/tmux-plugins/tmux-thumbs/default.nix
blob: 80aa40e866cb2873ab74f5b43cc9a81c4a7e0aa9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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";
    })
  ];

}