mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
Merge pull request #213660 from qowoz/nix-zsh
nix-zsh-completions: 0.4.4 -> unstable-2023-01-30
This commit is contained in:
commit
25a9e5aef8
@ -2,26 +2,15 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "nix-zsh-completions";
|
pname = "nix-zsh-completions";
|
||||||
version = "0.4.4";
|
version = "unstable-2023-01-30";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "spwhitt";
|
owner = "nix-community";
|
||||||
repo = "nix-zsh-completions";
|
repo = "nix-zsh-completions";
|
||||||
rev = version;
|
rev = "6a1bfc024481bdba568f2ced65e02f3a359a7692";
|
||||||
sha256 = "1n9whlys95k4wc57cnz3n07p7zpkv796qkmn68a50ygkx6h3afqf";
|
hash = "sha256-aXetjkl5nPuYHHyuX59ywXF+4Xg+PUCV6Y2u+g18gEk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# https://github.com/spwhitt/nix-zsh-completions/issues/42
|
|
||||||
#
|
|
||||||
# _nix completion is broken. Remove it; _nix provided by the nix
|
|
||||||
# package will be used instead. It is not sufficient to set low
|
|
||||||
# meta.priority below if nix is installed in the system profile and
|
|
||||||
# nix-zsh-completions in an user profile. In that case, the broken
|
|
||||||
# version takes precedence over the good one.
|
|
||||||
postPatch = ''
|
|
||||||
rm _nix
|
|
||||||
'';
|
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
|
mkdir -p $out/share/zsh/{site-functions,plugins/nix}
|
||||||
@ -30,9 +19,8 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/spwhitt/nix-zsh-completions";
|
homepage = "https://github.com/nix-community/nix-zsh-completions";
|
||||||
description = "ZSH completions for Nix, NixOS, and NixOps";
|
description = "ZSH completions for Nix, NixOS, and NixOps";
|
||||||
priority = 6; # prevent collisions with nix 2.4's built-in completions
|
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
maintainers = with maintainers; [ spwhitt olejorgenb hedning ma27 ];
|
maintainers = with maintainers; [ spwhitt olejorgenb hedning ma27 ];
|
||||||
|
Loading…
Reference in New Issue
Block a user