32 lines
772 B
Nix
32 lines
772 B
Nix
|
{ stdenv, fetchFromGitHub }:
|
||
|
|
||
|
let
|
||
|
version = "0.4.4";
|
||
|
in
|
||
|
|
||
|
stdenv.mkDerivation {
|
||
|
pname = "nix-zsh-completions";
|
||
|
inherit version;
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "spwhitt";
|
||
|
repo = "nix-zsh-completions";
|
||
|
rev = version;
|
||
|
sha256 = "1n9whlys95k4wc57cnz3n07p7zpkv796qkmn68a50ygkx6h3afqf";
|
||
|
};
|
||
|
|
||
|
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 ];
|
||
|
};
|
||
|
}
|