From 21b86ce217b74d9279e8c6ce164dd30fb00a900c Mon Sep 17 00:00:00 2001 From: arne Date: Sun, 28 Aug 2022 09:57:36 +0200 Subject: [PATCH] Processing needs xwayland for compatibility Fixes "CompilerException java.awt.AWTError: Can't connect to X11 window server using ':0' as the value of the DISPLAY variable." --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index 8296393..344a944 100644 --- a/shell.nix +++ b/shell.nix @@ -6,6 +6,7 @@ in pkgs.mkShell rec { name = "quil-env"; buildInputs = with pkgs; [ xorg_sys_opengl + xwayland clojure ]; LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";