3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/shells/zsh/zsh-powerlevel10k/default.nix

41 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, substituteAll, pkgs }:
# To make use of this derivation, use
# `programs.zsh.promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";`
zsh-powerlevel10k: 1.1 → 1.2.0 Changes since the last release New segments: wifi: shows WiFi data transfer speed; can optionally display security level, SSID, etc. asdf: tool versions from asdf. taskwarrior: task counts from taskwarrior. phpenv: PHP version from phpenv. New parameters: POWERLEVEL9K_${SEGMENT}_${STATE}_SHOW_ON_UPGLOB with regular fallback; this allows you to display a prompt segment only whethere is a file matching a certain pattern in the current directory, or in .., or in ../.., etc. For example: POWERLEVEL9K_NODE_VERSION_SHOW_ON_UPGLOB='package.json|node_modules' to show node_version segment only in Node project directories. POWERLEVEL9K_VPN_IP_SHOW_ALL: if set to true, vpn_ip will show IPs from all matching network interfaces instead of just the first. POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER: when set to true, drops path before the last marked directory (usually a Git repo root). More fine grained control over battery colors: POWERLEVEL9K_BATTERY_${state}_{STAGES,LEVEL_BACKGROUND,LEVEL_FOREGROUND}. Network transfer speed: P9K_IP_TX_RATE and P9K_IP_RX_RATE in ip segment. Configuration wizard: Gracefully handle non-writable ~/.zshrc. New segments enabled by default: asdf, taskwarrior, phpenv. New segments disabled by default: php_version, laravel_version. Git status now displays VCS_STATUS_PUSH_COMMITS_{AHEAD,BEHIND}. Git status now displays "─" when POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY is in effect. Git status by default ignores the git repo rooted at $HOME; see POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN. Pure style now has context on the very left; upstream: sindresorhus/pure#530. When installing the recommended font for iTerm2, detect and attempt to delete (after confirmation from the user) other versions of MesloLGS NF. New style: robbyrussell; not exposed through the wizard; enable it with source .../powerlevel10k/config/p10k-robbyrussell.zsh. Prompt performance improvements: Async worker chatter is now 2x faster. Prompt rendering and gitstatus_query now run in parallel; this reduces prompt latency by up to 5ms. Bug fixes: truncate_to_last now behaves exactly like %1~. Don't crap out when file names contain colon. Don't crap out when using more than one prompt_char. Don't crap out when PATH is empty. gcloud now works when using non-default configs. timewarrior segment now respects $TIMEWARRIORDB (thanks, @errantepiphany!). Pick up ip and ifconfig tools from PATH (used to be /sbin/ip and /sbin/ifconfig). SHOW_ON_COMMAND now works with legacy custom prompt segments. Git status in Pure style now has correct number of spaces. Robustness improvements: Work around a bug in sysread in Zsh (fixed in Zsh 5.8). Replace all wide icons with narrow by default (many terminals choke on wide icons). Replace terraform icons with another (emacs crashes on the old icon). Prompt should now function even when locale is misconfigured as long as there is at least one UTF-8 locale installed on the system. Workarounds for Zsh bugs in handling of ZLE_RPROMPT_INDENT=0 are now applied in more cases. gitstatus: Support repositories where .git is a symbolic link. Support repositories with preciousObjects extension. Add VCS_STATUS_PUSH_{REMOTE_NAME,REMOTE_URL,COMMITS_AHEAD,COMMITS_BEHIND}: similar to VCS_STATUS_{REMOTE_NAME,REMOTE_URL,COMMITS_AHEAD,COMMITS_BEHIND} but for @push remote. Add VCS_STATUS_NUM_SKIP_WORKTREE and VCS_STATUS_NUM_ASSUME_UNCHANGED: the number of files in the index with --skip-worktree and --assume-unchanged bits respectively`. Support Cygwin on older versions of Windows Completely rewritten Zsh API (similar to async worker in powerlevel10k); this makes startup about 5x faster and should be more robust. The gitstatusd binary is now looked up as follows: If GITSTATUS_DAEMON is an absolute path, use that. Else if GITSTATUS_DAEMON is a valid command name (PATH lookup), use that. Else if GITSTATUS_DAEMON is not empty, try $gitstatus_dir/{usrbin,bin}/$GITSTATUS_DAEMON (in this order). Else try $gitstatus_dir/{usrbin,bin}/gitstatusd-$os-$arch{,-static} (in this order).
2020-02-26 19:55:55 +00:00
stdenv.mkDerivation rec {
pname = "powerlevel10k";
zsh-powerlevel10k: v1.3.0 → v1.4.0 Changes since the last release New prompt segments: package: shows npm name and version from package.json (disabled by default). New and changed parameters: P9K_OS_ICON: set by Powerlevel10k on initialization; can be used in user-defined prompt segments and *_EXPANSION parameters. POWERLEVEL9K_ICON_PADDING: when set to moderate, some icons will have an extra space after them. This is meant to avoid icon overlap when using non-monospace fonts. When set to none, spaces are not added. Performance improvement: detect_virt prompt segment is now 50% faster. Bug fixes: Many terminal escape sequences are now terminated with BEL instead of ST. BEL is the standard terminator according to ECMA-48 §8.3.89 but Konsole doesn't understand it. Thankfully, all terminals appear to understand BEL as extension. Superfluous spaces have been removed from vcs segment when using a monospace font and not using my_git_formatter. Wizard: Generated configs now set POWERLEVEL9K_ICON_PADDING in favor of *_VISUAL_IDENTIFIER_EXPANSION. The value of this parameters depends on the answers to the first few questions that concern terminal font capabilities. Generated configs no longer attempt to work around misconfigured locale. The workarounds in Powerlevel10k proper are sufficient. gitstatus: Fix a regression on Linux systems where uname doesn't understand -o. Fix a regression on Cygwin and MinGW when running on older versions of Windows. Fix a bug that can result in occasional gitstatus initialization failure on WSL when using Powerlevel10k with Instant Prompt.
2020-03-16 12:11:34 +00:00
version = "1.4.0";
zsh-powerlevel10k: 1.1 → 1.2.0 Changes since the last release New segments: wifi: shows WiFi data transfer speed; can optionally display security level, SSID, etc. asdf: tool versions from asdf. taskwarrior: task counts from taskwarrior. phpenv: PHP version from phpenv. New parameters: POWERLEVEL9K_${SEGMENT}_${STATE}_SHOW_ON_UPGLOB with regular fallback; this allows you to display a prompt segment only whethere is a file matching a certain pattern in the current directory, or in .., or in ../.., etc. For example: POWERLEVEL9K_NODE_VERSION_SHOW_ON_UPGLOB='package.json|node_modules' to show node_version segment only in Node project directories. POWERLEVEL9K_VPN_IP_SHOW_ALL: if set to true, vpn_ip will show IPs from all matching network interfaces instead of just the first. POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER: when set to true, drops path before the last marked directory (usually a Git repo root). More fine grained control over battery colors: POWERLEVEL9K_BATTERY_${state}_{STAGES,LEVEL_BACKGROUND,LEVEL_FOREGROUND}. Network transfer speed: P9K_IP_TX_RATE and P9K_IP_RX_RATE in ip segment. Configuration wizard: Gracefully handle non-writable ~/.zshrc. New segments enabled by default: asdf, taskwarrior, phpenv. New segments disabled by default: php_version, laravel_version. Git status now displays VCS_STATUS_PUSH_COMMITS_{AHEAD,BEHIND}. Git status now displays "─" when POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY is in effect. Git status by default ignores the git repo rooted at $HOME; see POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN. Pure style now has context on the very left; upstream: sindresorhus/pure#530. When installing the recommended font for iTerm2, detect and attempt to delete (after confirmation from the user) other versions of MesloLGS NF. New style: robbyrussell; not exposed through the wizard; enable it with source .../powerlevel10k/config/p10k-robbyrussell.zsh. Prompt performance improvements: Async worker chatter is now 2x faster. Prompt rendering and gitstatus_query now run in parallel; this reduces prompt latency by up to 5ms. Bug fixes: truncate_to_last now behaves exactly like %1~. Don't crap out when file names contain colon. Don't crap out when using more than one prompt_char. Don't crap out when PATH is empty. gcloud now works when using non-default configs. timewarrior segment now respects $TIMEWARRIORDB (thanks, @errantepiphany!). Pick up ip and ifconfig tools from PATH (used to be /sbin/ip and /sbin/ifconfig). SHOW_ON_COMMAND now works with legacy custom prompt segments. Git status in Pure style now has correct number of spaces. Robustness improvements: Work around a bug in sysread in Zsh (fixed in Zsh 5.8). Replace all wide icons with narrow by default (many terminals choke on wide icons). Replace terraform icons with another (emacs crashes on the old icon). Prompt should now function even when locale is misconfigured as long as there is at least one UTF-8 locale installed on the system. Workarounds for Zsh bugs in handling of ZLE_RPROMPT_INDENT=0 are now applied in more cases. gitstatus: Support repositories where .git is a symbolic link. Support repositories with preciousObjects extension. Add VCS_STATUS_PUSH_{REMOTE_NAME,REMOTE_URL,COMMITS_AHEAD,COMMITS_BEHIND}: similar to VCS_STATUS_{REMOTE_NAME,REMOTE_URL,COMMITS_AHEAD,COMMITS_BEHIND} but for @push remote. Add VCS_STATUS_NUM_SKIP_WORKTREE and VCS_STATUS_NUM_ASSUME_UNCHANGED: the number of files in the index with --skip-worktree and --assume-unchanged bits respectively`. Support Cygwin on older versions of Windows Completely rewritten Zsh API (similar to async worker in powerlevel10k); this makes startup about 5x faster and should be more robust. The gitstatusd binary is now looked up as follows: If GITSTATUS_DAEMON is an absolute path, use that. Else if GITSTATUS_DAEMON is a valid command name (PATH lookup), use that. Else if GITSTATUS_DAEMON is not empty, try $gitstatus_dir/{usrbin,bin}/$GITSTATUS_DAEMON (in this order). Else try $gitstatus_dir/{usrbin,bin}/gitstatusd-$os-$arch{,-static} (in this order).
2020-02-26 19:55:55 +00:00
src = fetchFromGitHub {
owner = "romkatv";
repo = "powerlevel10k";
zsh-powerlevel10k: 1.1 → 1.2.0 Changes since the last release New segments: wifi: shows WiFi data transfer speed; can optionally display security level, SSID, etc. asdf: tool versions from asdf. taskwarrior: task counts from taskwarrior. phpenv: PHP version from phpenv. New parameters: POWERLEVEL9K_${SEGMENT}_${STATE}_SHOW_ON_UPGLOB with regular fallback; this allows you to display a prompt segment only whethere is a file matching a certain pattern in the current directory, or in .., or in ../.., etc. For example: POWERLEVEL9K_NODE_VERSION_SHOW_ON_UPGLOB='package.json|node_modules' to show node_version segment only in Node project directories. POWERLEVEL9K_VPN_IP_SHOW_ALL: if set to true, vpn_ip will show IPs from all matching network interfaces instead of just the first. POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER: when set to true, drops path before the last marked directory (usually a Git repo root). More fine grained control over battery colors: POWERLEVEL9K_BATTERY_${state}_{STAGES,LEVEL_BACKGROUND,LEVEL_FOREGROUND}. Network transfer speed: P9K_IP_TX_RATE and P9K_IP_RX_RATE in ip segment. Configuration wizard: Gracefully handle non-writable ~/.zshrc. New segments enabled by default: asdf, taskwarrior, phpenv. New segments disabled by default: php_version, laravel_version. Git status now displays VCS_STATUS_PUSH_COMMITS_{AHEAD,BEHIND}. Git status now displays "─" when POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY is in effect. Git status by default ignores the git repo rooted at $HOME; see POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN. Pure style now has context on the very left; upstream: sindresorhus/pure#530. When installing the recommended font for iTerm2, detect and attempt to delete (after confirmation from the user) other versions of MesloLGS NF. New style: robbyrussell; not exposed through the wizard; enable it with source .../powerlevel10k/config/p10k-robbyrussell.zsh. Prompt performance improvements: Async worker chatter is now 2x faster. Prompt rendering and gitstatus_query now run in parallel; this reduces prompt latency by up to 5ms. Bug fixes: truncate_to_last now behaves exactly like %1~. Don't crap out when file names contain colon. Don't crap out when using more than one prompt_char. Don't crap out when PATH is empty. gcloud now works when using non-default configs. timewarrior segment now respects $TIMEWARRIORDB (thanks, @errantepiphany!). Pick up ip and ifconfig tools from PATH (used to be /sbin/ip and /sbin/ifconfig). SHOW_ON_COMMAND now works with legacy custom prompt segments. Git status in Pure style now has correct number of spaces. Robustness improvements: Work around a bug in sysread in Zsh (fixed in Zsh 5.8). Replace all wide icons with narrow by default (many terminals choke on wide icons). Replace terraform icons with another (emacs crashes on the old icon). Prompt should now function even when locale is misconfigured as long as there is at least one UTF-8 locale installed on the system. Workarounds for Zsh bugs in handling of ZLE_RPROMPT_INDENT=0 are now applied in more cases. gitstatus: Support repositories where .git is a symbolic link. Support repositories with preciousObjects extension. Add VCS_STATUS_PUSH_{REMOTE_NAME,REMOTE_URL,COMMITS_AHEAD,COMMITS_BEHIND}: similar to VCS_STATUS_{REMOTE_NAME,REMOTE_URL,COMMITS_AHEAD,COMMITS_BEHIND} but for @push remote. Add VCS_STATUS_NUM_SKIP_WORKTREE and VCS_STATUS_NUM_ASSUME_UNCHANGED: the number of files in the index with --skip-worktree and --assume-unchanged bits respectively`. Support Cygwin on older versions of Windows Completely rewritten Zsh API (similar to async worker in powerlevel10k); this makes startup about 5x faster and should be more robust. The gitstatusd binary is now looked up as follows: If GITSTATUS_DAEMON is an absolute path, use that. Else if GITSTATUS_DAEMON is a valid command name (PATH lookup), use that. Else if GITSTATUS_DAEMON is not empty, try $gitstatus_dir/{usrbin,bin}/$GITSTATUS_DAEMON (in this order). Else try $gitstatus_dir/{usrbin,bin}/gitstatusd-$os-$arch{,-static} (in this order).
2020-02-26 19:55:55 +00:00
rev = "v${version}";
zsh-powerlevel10k: v1.3.0 → v1.4.0 Changes since the last release New prompt segments: package: shows npm name and version from package.json (disabled by default). New and changed parameters: P9K_OS_ICON: set by Powerlevel10k on initialization; can be used in user-defined prompt segments and *_EXPANSION parameters. POWERLEVEL9K_ICON_PADDING: when set to moderate, some icons will have an extra space after them. This is meant to avoid icon overlap when using non-monospace fonts. When set to none, spaces are not added. Performance improvement: detect_virt prompt segment is now 50% faster. Bug fixes: Many terminal escape sequences are now terminated with BEL instead of ST. BEL is the standard terminator according to ECMA-48 §8.3.89 but Konsole doesn't understand it. Thankfully, all terminals appear to understand BEL as extension. Superfluous spaces have been removed from vcs segment when using a monospace font and not using my_git_formatter. Wizard: Generated configs now set POWERLEVEL9K_ICON_PADDING in favor of *_VISUAL_IDENTIFIER_EXPANSION. The value of this parameters depends on the answers to the first few questions that concern terminal font capabilities. Generated configs no longer attempt to work around misconfigured locale. The workarounds in Powerlevel10k proper are sufficient. gitstatus: Fix a regression on Linux systems where uname doesn't understand -o. Fix a regression on Cygwin and MinGW when running on older versions of Windows. Fix a bug that can result in occasional gitstatus initialization failure on WSL when using Powerlevel10k with Instant Prompt.
2020-03-16 12:11:34 +00:00
sha256 = "03v8qlblgdazbm16gwr87blm5nxizza61f8w6hjyhgrx51ly9ln5";
};
patches = [
(substituteAll {
src = ./gitstatusd.patch;
gitstatusdPath = "${pkgs.gitAndTools.gitstatus}/bin/gitstatusd";
})
];
installPhase = ''
install -D powerlevel10k.zsh-theme --target-directory=$out/share/zsh-powerlevel10k
install -D config/* --target-directory=$out/share/zsh-powerlevel10k/config
install -D internal/* --target-directory=$out/share/zsh-powerlevel10k/internal
rm -r gitstatus/bin
install -D gitstatus/* --target-directory=$out/share/zsh-powerlevel10k/gitstatus
'';
meta = {
description = "A fast reimplementation of Powerlevel9k ZSH theme";
homepage = "https://github.com/romkatv/powerlevel10k";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
maintainers = [ stdenv.lib.maintainers.hexa ];
};
}