grc: use installShellFiles

This commit is contained in:
Aaron Jheng
2022-11-10 10:43:20 +00:00
parent 9bbb7fb635
commit 5bdef060ba
+6 -1
View File
@@ -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
'';