electron: fix rpath for executable chrome_crashpad_handler

chrome_crashpad_handler the crash reporter does not work if rpath is unpatched
This commit is contained in:
Congee
2022-04-23 20:18:27 -04:00
parent 5cefa27232
commit 97a94014f5
+2 -1
View File
@@ -92,7 +92,8 @@ let
patchelf \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${atomEnv.libPath}:${electronLibPath}:$out/lib/electron" \
$out/lib/electron/electron
$out/lib/electron/electron \
${lib.optionalString (! lib.versionOlder version "15.0.0") "$out/lib/electron/chrome_crashpad_handler" }
wrapProgram $out/lib/electron/electron \
--prefix LD_PRELOAD : ${lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1 \