mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
grc: use installShellFiles
This commit is contained in:
parent
9bbb7fb635
commit
5bdef060ba
|
@ -1,6 +1,7 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, buildPythonApplication
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
|
@ -22,10 +23,14 @@ buildPythonApplication rec {
|
|||
done
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
./install.sh "$out" "$out"
|
||||
install -Dm444 -t $out/share/zsh/vendor-completions _grc
|
||||
installShellCompletion --zsh --name _grc _grc
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
|
|
Loading…
Reference in a new issue