vscode: use absolute predetermined path instead of heuristic

Fixes #59725
wip/yesman
Patrick Hilhorst 5 years ago
parent f8564ae974
commit f9d9c61018
No known key found for this signature in database
GPG Key ID: 589BB0A8DAFEF2B2
  1. 3
      pkgs/applications/editors/vscode/default.nix

@ -108,6 +108,9 @@ in
mkdir -p $out/share/pixmaps
cp $out/lib/vscode/resources/app/resources/linux/code.png $out/share/pixmaps/code.png
# Override the previously determined VSCODE_PATH with the one we know to be correct
sed -i "/ELECTRON=/iVSCODE_PATH='$out/lib/vscode'" $out/bin/code
'';
preFixup = lib.optionalString (system == "i686-linux" || system == "x86_64-linux") ''

Loading…
Cancel
Save