lol

Merge pull request #153623 from sei40kr/zsh-history-search-multi-word

zsh-history-search-multi-word: init at unstable-2021-11-13

authored by

Bernardo Meurer and committed by
GitHub
5d3c9dde a8e211ef

+32
+30
pkgs/shells/zsh/zsh-history-search-multi-word/default.nix
··· 1 + { stdenvNoCC, lib, fetchFromGitHub }: 2 + 3 + stdenvNoCC.mkDerivation rec { 4 + pname = "zsh-history-search-multi-word"; 5 + version = "unstable-2021-11-13"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "zdharma-continuum"; 9 + repo = "history-search-multi-word"; 10 + rev = "5b44d8cea12351d91fbdc3697916556f59f14b8c"; 11 + sha256 = "11r2mmy6bg3b6pf6qc0ml3idh333cj8yz754hrvd1sc4ipfkkqh7"; 12 + }; 13 + 14 + dontConfigure = true; 15 + dontBuild = true; 16 + 17 + installPhase = '' 18 + plugindir="$out/share/zsh/${pname}" 19 + 20 + mkdir -p "$plugindir" 21 + cp -r -- history-* hsmw-* "$plugindir"/ 22 + ''; 23 + 24 + meta = with lib; { 25 + description = "Multi-word, syntax highlighted history searching for Zsh"; 26 + homepage = "https://github.com/zdharma-continuum/history-search-multi-word"; 27 + license = with licenses; [ gpl3 mit ]; 28 + platforms = platforms.unix; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 11323 11323 11324 11324 zsh-history = callPackage ../shells/zsh/zsh-history { }; 11325 11325 11326 + zsh-history-search-multi-word = callPackage ../shells/zsh/zsh-history-search-multi-word { }; 11327 + 11326 11328 zsh-history-substring-search = callPackage ../shells/zsh/zsh-history-substring-search { }; 11327 11329 11328 11330 zsh-navigation-tools = callPackage ../tools/misc/zsh-navigation-tools { };