element-desktop: fix sandbox build on darwin (#431411)

This commit is contained in:
Sandro
2025-08-12 13:47:31 +02:00
committed by GitHub
@@ -77,6 +77,11 @@ stdenv.mkDerivation (
runHook postConfigure
'';
# Workaround for darwin sandbox build failure: "Error: listen EPERM: operation not permitted ..tsx..."
preBuild = lib.optionalString stdenv.hostPlatform.isDarwin ''
export TMPDIR="$(mktemp -d)"
'';
buildPhase = ''
runHook preBuild