nixpkgs/pkgs/shells/zsh/nix-zsh-completions/default.nix
Maximilian Bosch 1922b43b7e
nix-zsh-completions: install nix.plugin.zsh and init.zsh as well
These files feature simple aliases and a nix-shell detector when using
`nix-shell --run zsh`. The package itself contains the completion scripts in
`$out/share/zsh/site-functions` (to keep it compatible with ZSH-only
setups) and the plugins in `$out/share/zsh/plugins` for oh-my-zsh.
2018-08-05 23:01:18 +02:00

31 lines
770 B
Nix

{ stdenv, fetchFromGitHub }:
let
version = "0.4.0";
in
stdenv.mkDerivation rec {
name = "nix-zsh-completions-${version}";
src = fetchFromGitHub {
owner = "spwhitt";
repo = "nix-zsh-completions";
rev = "${version}";
sha256 = "0m8b9xgbz2nvk1q7m0gqy83gbqa49n062gymhk9x93zhbdh8vwky";
};
installPhase = ''
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
cp _* $out/share/zsh/site-functions
cp *.zsh $out/share/zsh/plugins/nix
'';
meta = with stdenv.lib; {
homepage = https://github.com/spwhitt/nix-zsh-completions;
description = "ZSH completions for Nix, NixOS, and NixOps";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ spwhitt olejorgenb hedning ma27 ];
};
}