From 791dbe138d3f7dd69feaae7c9519199313cc108d Mon Sep 17 00:00:00 2001 From: Kopatz <7265381+Kropatz@users.noreply.github.com> Date: Wed, 20 Dec 2023 19:01:08 +0100 Subject: [PATCH] tetrio-desktop: add libGL to libPath This fixes the program not being able to use the GPU. --- pkgs/games/tetrio-desktop/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/games/tetrio-desktop/default.nix b/pkgs/games/tetrio-desktop/default.nix index a48f2b22138a..e31491e94c90 100644 --- a/pkgs/games/tetrio-desktop/default.nix +++ b/pkgs/games/tetrio-desktop/default.nix @@ -6,6 +6,7 @@ , wrapGAppsHook , alsa-lib , cups +, libGL , libX11 , libXScrnSaver , libXtst @@ -49,6 +50,7 @@ stdenv.mkDerivation rec { ]; libPath = lib.makeLibraryPath [ + libGL libpulseaudio systemd ];