Merge pull request #46522 from alyssais/zsh-history-substring-search
zsh-history-substring-search: init at 1.0.1
This commit is contained in:
commit
8ed666f620
26
pkgs/shells/zsh/zsh-history-substring-search/default.nix
Normal file
26
pkgs/shells/zsh/zsh-history-substring-search/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, zsh }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "zsh-history-substring-search-${version}";
|
||||||
|
version = "1.0.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "zsh-users";
|
||||||
|
repo = "zsh-history-substring-search";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0lgmq1xcccnz5cf7vl0r0qj351hwclx9p80cl0qczxry4r2g5qaz";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -D zsh-history-substring-search.zsh \
|
||||||
|
"$out/share/zsh-history-substring-search/zsh-history-substring-search.zsh"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Fish shell history-substring-search for Zsh";
|
||||||
|
homepage = https://github.com/zsh-users/zsh-history-substring-search;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ qyliss ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -6211,6 +6211,8 @@ with pkgs;
|
|||||||
|
|
||||||
zsh-git-prompt = callPackage ../shells/zsh/zsh-git-prompt { };
|
zsh-git-prompt = callPackage ../shells/zsh/zsh-git-prompt { };
|
||||||
|
|
||||||
|
zsh-history-substring-search = callPackage ../shells/zsh/zsh-history-substring-search { };
|
||||||
|
|
||||||
zsh-navigation-tools = callPackage ../tools/misc/zsh-navigation-tools { };
|
zsh-navigation-tools = callPackage ../tools/misc/zsh-navigation-tools { };
|
||||||
|
|
||||||
zsh-syntax-highlighting = callPackage ../shells/zsh/zsh-syntax-highlighting { };
|
zsh-syntax-highlighting = callPackage ../shells/zsh/zsh-syntax-highlighting { };
|
||||||
|
Loading…
Reference in New Issue
Block a user