nixpkgs/pkgs/shells/zsh/nix-zsh-completions/default.nix

31 lines
770 B
Nix
Raw Normal View History

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