changed install
Some checks failed
Vim End-to-End Tests / themis (push) Has been cancelled
CI Tests / dotnet (push) Has been cancelled
CI Tests / dotnet-1 (push) Has been cancelled
CI Tests / dotnet-2 (push) Has been cancelled
Emacs End-to-End Tests / ert (push) Has been cancelled

This commit is contained in:
fwastring 2026-02-18 13:31:44 +01:00
parent 242fd47f93
commit 7f29c36557

View file

@ -16,11 +16,11 @@ stdenvNoCC.mkDerivation rec {
}; };
installPhase = '' installPhase = ''
mkdir -p $out/lib/powershell-editor-services/ $out/bin mkdir -p $out/share/powershell/Modules $out/bin
mv * $out/lib/powershell-editor-services/ mv PowerShellEditorServices $out/share/powershell/Modules/
cat > $out/bin/powershell-editor-services <<EOF cat > $out/bin/powershell-editor-services <<EOF
#! ${runtimeShell} -e #! ${runtimeShell} -e
exec ${lib.getExe' powershell "pwsh"} -noprofile -nologo -c "& '$out/lib/powershell-editor-services/PowerShellEditorServices/Start-EditorServices.ps1' \$@" exec ${lib.getExe' powershell "pwsh"} -noprofile -nologo -c "& '$out/share/powershell/Modules/PowerShellEditorServices/Start-EditorServices.ps1' \$@"
EOF EOF
chmod +x $out/bin/powershell-editor-services chmod +x $out/bin/powershell-editor-services
''; '';