fix(nix): make electron binary executable (#581)

This commit is contained in:
Alexis Williams
2026-05-05 13:49:14 -07:00
committed by GitHub
parent 8882f0fe26
commit 59ec0c6918

View File

@@ -124,6 +124,7 @@ stdenvNoCC.mkDerivation {
# Copy the ELF binary MUST be a real copy (not symlink) so that
# /proc/self/exe resolves to our tree
cp ${electronDir}/electron $electron_tree/electron
chmod +x $electron_tree/electron
# Symlink everything else from electron-unwrapped
for item in ${electronDir}/*; do