grc: use installShellFiles

This commit is contained in:
Aaron Jheng 2022-11-10 07:37:59 +00:00
parent 9bbb7fb635
commit 5bdef060ba
No known key found for this signature in database
GPG key ID: F6A547A869D050A3

View file

@ -1,6 +1,7 @@
{ lib { lib
, fetchFromGitHub , fetchFromGitHub
, buildPythonApplication , buildPythonApplication
, installShellFiles
}: }:
buildPythonApplication rec { buildPythonApplication rec {
@ -22,10 +23,14 @@ buildPythonApplication rec {
done done
''; '';
nativeBuildInputs = [ installShellFiles ];
installPhase = '' installPhase = ''
runHook preInstall runHook preInstall
./install.sh "$out" "$out" ./install.sh "$out" "$out"
install -Dm444 -t $out/share/zsh/vendor-completions _grc installShellCompletion --zsh --name _grc _grc
runHook postInstall runHook postInstall
''; '';