Merge pull request #144611 from Gerschtli/add-zsh-completion
This commit is contained in:
commit
850faa3f51
25
pkgs/shells/zsh/zsh-better-npm-completion/default.nix
Normal file
25
pkgs/shells/zsh/zsh-better-npm-completion/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "zsh-better-npm-completion";
|
||||
version = "unstable-2019-11-19";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lukechilds";
|
||||
repo = "zsh-better-npm-completion";
|
||||
rev = "0a7cf042415324ec38a186fdcbc9af163f0d7e69";
|
||||
sha256 = "16z7k5n1rcl9i61lrm7i5dsqsmhvdp1y4y5ii6hv2xpp470addgy";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -Dm 0644 zsh-better-npm-completion.plugin.zsh $out/share/zsh-better-npm-completion
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Better completion for npm";
|
||||
homepage = "https://github.com/lukechilds/zsh-better-npm-completion";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.gerschtli ];
|
||||
};
|
||||
}
|
@ -11128,6 +11128,8 @@ with pkgs;
|
||||
|
||||
zsh-bd = callPackage ../shells/zsh/zsh-bd { };
|
||||
|
||||
zsh-better-npm-completion = callPackage ../shells/zsh/zsh-better-npm-completion { };
|
||||
|
||||
zsh-clipboard = callPackage ../shells/zsh/zsh-clipboard { };
|
||||
|
||||
zsh-git-prompt = callPackage ../shells/zsh/zsh-git-prompt { };
|
||||
|
Loading…
Reference in New Issue
Block a user