From 90d5da07f356a6b3d42acbd13c2b292cc245daab Mon Sep 17 00:00:00 2001 From: Toboi Date: Fri, 21 Mar 2025 22:04:06 +0100 Subject: [PATCH] raysession: fix ray-jackpatch ray-jackpatch.py loads main_loop.py, but that was being replaced with a wrapper, which couldn't be loaded correctly by python. Removing the executable bit avoids it getting wrapped. --- pkgs/applications/audio/raysession/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/audio/raysession/default.nix b/pkgs/applications/audio/raysession/default.nix index fba0126b2819..38c6b78d72d7 100644 --- a/pkgs/applications/audio/raysession/default.nix +++ b/pkgs/applications/audio/raysession/default.nix @@ -24,6 +24,7 @@ buildPythonApplication rec { substituteInPlace Makefile --replace '$(DESTDIR)/' '$(DESTDIR)$(PREFIX)/' # Do not wrap an importable module with a shell script. chmod -x src/daemon/desktops_memory.py + chmod -x src/clients/jackpatch/main_loop.py ''; format = "other";