zsh-completions: fix code style

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
Otavio Salvador 2022-08-13 18:05:07 -03:00
parent c5e81898a3
commit c3edf8a264

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub}:
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "zsh-completions";
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
};
strictDeps = true;
installPhase= ''
installPhase = ''
install -D --target-directory=$out/share/zsh/site-functions src/*
'';