Merge pull request #218877 from jnsgruk/catppuccin-tmux

tmuxPlugins: init catppuccin theme at e2561de

authored by Ryan Lahfa and committed by GitHub 8aa37eb7 c021277a

+21
+21
pkgs/misc/tmux-plugins/default.nix
··· 90 90 }; 91 91 }; 92 92 93 + catppuccin = mkTmuxPlugin { 94 + pluginName = "catppuccin"; 95 + version = "unstable-2022-12-14"; 96 + src = fetchFromGitHub { 97 + owner = "catppuccin"; 98 + repo = "tmux"; 99 + rev = "e2561decc2a4e77a0f8b7c05caf8d4f2af9714b3"; 100 + sha256 = "sha256-6UmFGkUDoIe8k+FrzdzsKrDHHMNfkjAk0yyc+HV199M="; 101 + }; 102 + postInstall = '' 103 + sed -i -e 's|''${PLUGIN_DIR}/catppuccin-selected-theme.tmuxtheme|''${TMUX_TMPDIR}/catppuccin-selected-theme.tmuxtheme|g' $target/catppuccin.tmux 104 + ''; 105 + meta = with lib; { 106 + homepage = "https://github.com/catppuccin/tmux"; 107 + description = "Soothing pastel theme for Tmux!"; 108 + license = licenses.mit; 109 + platforms = platforms.unix; 110 + maintainers = with maintainers; [ jnsgruk ]; 111 + }; 112 + }; 113 + 93 114 continuum = mkTmuxPlugin { 94 115 pluginName = "continuum"; 95 116 version = "unstable-2022-01-25";