From 8d74a58c8d3c00d7917899c4d1d6dbc9f2e8a73d Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 5 Feb 2023 11:24:53 +0800 Subject: [PATCH] vscode: Fix missing executable permissions The terminal does not open without this. https://github.com/gentoo/gentoo/commit/4da5959 --- pkgs/applications/editors/vscode/generic.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/applications/editors/vscode/generic.nix b/pkgs/applications/editors/vscode/generic.nix index 1b4f4508fbf0..c2036566b384 100644 --- a/pkgs/applications/editors/vscode/generic.nix +++ b/pkgs/applications/editors/vscode/generic.nix @@ -135,6 +135,9 @@ let # this fixes bundled ripgrep chmod +x resources/app/node_modules/@vscode/ripgrep/bin/rg + + # see https://github.com/gentoo/gentoo/commit/4da5959 + chmod +x resources/app/node_modules/node-pty/build/Release/spawn-helper ''; inherit meta;