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

32 lines
775 B
Nix
Raw Normal View History

2015-11-24 18:13:48 +00:00
{ stdenv, fetchFromGitHub }:
let
version = "0.4.3";
in
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "nix-zsh-completions";
inherit version;
2015-11-24 18:13:48 +00:00
src = fetchFromGitHub {
owner = "spwhitt";
repo = "nix-zsh-completions";
rev = "${version}";
sha256 = "0fq1zlnsj1bb7byli7mwlz7nm2yszwmyx43ccczcv51mjjfivyp3";
2015-11-24 18:13:48 +00:00
};
installPhase = ''
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
2015-11-24 18:13:48 +00:00
cp _* $out/share/zsh/site-functions
cp *.zsh $out/share/zsh/plugins/nix
2015-11-24 18:13:48 +00:00
'';
meta = with stdenv.lib; {
homepage = https://github.com/spwhitt/nix-zsh-completions;
2015-11-24 18:13:48 +00: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 18:13:48 +00:00
};
}