Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 20 lines 269 B view raw
1{ 2 mkTmuxPlugin, 3 thumbs, 4 replaceVars, 5}: 6 7mkTmuxPlugin { 8 9 inherit (thumbs) version src meta; 10 11 pluginName = thumbs.src.repo; 12 rtpFilePath = "tmux-thumbs.tmux"; 13 14 patches = [ 15 (replaceVars ./fix.patch { 16 tmuxThumbsDir = "${thumbs}/bin"; 17 }) 18 ]; 19 20}