Merge pull request #200483 from aaronjheng/grc

grc: use installShellFiles
This commit is contained in:
Anderson Torres
2022-11-10 12:25:25 -03:00
committed by GitHub
+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
'';