nixpkgs/pkgs/shells/zsh/nix-zsh-completions/default.nix
Maximilian Bosch e446261e51
nix-zsh-completions: 0.4.0 -> 0.4.1
Contains several bugfixes that improve the ZSH completion for nix*
commands.

For further reference: https://github.com/spwhitt/nix-zsh-completions/releases/tag/0.4.1
2018-11-26 01:13:14 +01:00

31 lines
770 B
Nix

{ stdenv, fetchFromGitHub }:
let
version = "0.4.1";
in
stdenv.mkDerivation rec {
name = "nix-zsh-completions-${version}";
src = fetchFromGitHub {
owner = "spwhitt";
repo = "nix-zsh-completions";
rev = "${version}";
sha256 = "1p2y1sg6jghixv2j3fwxnkyl3idj44gcm71bbn25mnqfhm0z25hr";
};
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 ];
};
}