nixpkgs/pkgs/shells/zsh/nix-zsh-completions/default.nix
2023-08-07 23:54:28 +02:00

29 lines
784 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "nix-zsh-completions";
version = "0.5.0";
src = fetchFromGitHub {
owner = "nix-community";
repo = "nix-zsh-completions";
rev = "refs/tags/${version}";
hash = "sha256-DKvCpjAeCiUwD5l6PUW7WlEvM0cNZEOk41IiVXoh9D8=";
};
strictDeps = true;
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 lib; {
homepage = "https://github.com/nix-community/nix-zsh-completions";
description = "ZSH completions for Nix, NixOS, and NixOps";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ olejorgenb hedning ma27 ];
};
}