3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/shells/zsh/nix-zsh-completions/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
843 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2015-11-24 18:13:48 +00:00
2021-07-14 16:10:11 +01:00
stdenv.mkDerivation rec {
2019-08-13 22:52:01 +01:00
pname = "nix-zsh-completions";
2021-07-14 16:10:11 +01:00
version = "0.4.4";
2015-11-24 18:13:48 +00:00
src = fetchFromGitHub {
owner = "spwhitt";
repo = "nix-zsh-completions";
2019-09-09 00:38:31 +01:00
rev = version;
sha256 = "1n9whlys95k4wc57cnz3n07p7zpkv796qkmn68a50ygkx6h3afqf";
2015-11-24 18:13:48 +00:00
};
2022-05-06 19:39:28 +01:00
strictDeps = true;
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 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";
priority = 6; # prevent collisions with nix 2.4's built-in completions
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ spwhitt olejorgenb hedning ma27 ];
2015-11-24 18:13:48 +00:00
};
}