nur-packages/pkgs/tmux-thumbs/default.nix
2023-11-04 21:49:38 +01:00

30 lines
757 B
Nix

{ lib, mkTmuxPlugin, fetchFromGitHub, thumbs, substituteAll }:
mkTmuxPlugin rec {
pluginName = "tmux-thumbs";
version = "0.5.1-infdev";
rtpFilePath = "tmux-thumbs.tmux";
src = fetchFromGitHub {
owner = "FliegendeWurst";
repo = pluginName;
rev = "60824a826a0f64403fd45ded9be8cf3a130476b2";
sha256 = "sha256-3MKhZq2ks2rBYACf1kkfRxxXNexHjnQ6/+s1wCfqHeo=";
};
patches = [
(substituteAll {
src = ./fix.patch;
tmuxThumbsDir = "${thumbs}/bin";
})
];
meta = with lib; {
homepage = "https://github.com/FliegendeWurst/tmux-thumbs";
description = "tmux-thumbs with color support";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ fliegendewurst ];
};
}