From 9e87ab2007852d1d733977a2e3d66658d9392efe Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 22 May 2023 10:25:05 +0300 Subject: [PATCH] vscode: fix decrypting credentials after update --- pkgs/applications/editors/vscode/generic.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/editors/vscode/generic.nix b/pkgs/applications/editors/vscode/generic.nix index 8a276833a6cc..649c41dbcad7 100644 --- a/pkgs/applications/editors/vscode/generic.nix +++ b/pkgs/applications/editors/vscode/generic.nix @@ -101,6 +101,11 @@ let # Override the previously determined VSCODE_PATH with the one we know to be correct sed -i "/ELECTRON=/iVSCODE_PATH='$out/lib/vscode'" "$out/bin/${executableName}" grep -q "VSCODE_PATH='$out/lib/vscode'" "$out/bin/${executableName}" # check if sed succeeded + + # Remove native encryption code, as it derives the key from the executable path which does not work for us. + # The credentials should be stored in a secure keychain already, so the benefit of this is questionable + # in the first place. + rm -rf $out/lib/vscode/resources/app/node_modules/vscode-encrypt '') + '' runHook postInstall '';