b9cacc1de1
Added new completions for `nixos-build-vms`[1]. See https://github.com/spwhitt/nix-zsh-completions/releases/tag/0.4.3 [1] https://github.com/NixOS/nixpkgs/pull/55121 added support for `--option`.
31 lines
770 B
Nix
31 lines
770 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
let
|
|
version = "0.4.3";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nix-zsh-completions-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spwhitt";
|
|
repo = "nix-zsh-completions";
|
|
rev = "${version}";
|
|
sha256 = "0fq1zlnsj1bb7byli7mwlz7nm2yszwmyx43ccczcv51mjjfivyp3";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|