From b470ee270726ba8ab0ee7a089acf2f859ff30558 Mon Sep 17 00:00:00 2001 From: Yureka Date: Mon, 25 Nov 2024 17:52:43 +0100 Subject: [PATCH] tipp10: support running under wayland In qt6, the wayland support is provided by the application rather than the system environment Change-Id: I401e6baf2ddac4cd7535dd1cf40407aa15aeed4e --- pkgs/applications/misc/tipp10/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/tipp10/default.nix b/pkgs/applications/misc/tipp10/default.nix index 09a38a501e5e..2986d7981b35 100644 --- a/pkgs/applications/misc/tipp10/default.nix +++ b/pkgs/applications/misc/tipp10/default.nix @@ -1,5 +1,5 @@ { stdenv, cmake, lib, fetchFromGitLab, - qtmultimedia, qttools, wrapQtAppsHook, ... }: + qtmultimedia, qttools, qtwayland, wrapQtAppsHook, ... }: stdenv.mkDerivation rec { pname = "tipp10"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake qttools wrapQtAppsHook ]; - buildInputs = [ qtmultimedia ]; + buildInputs = [ qtmultimedia qtwayland ]; meta = { description = "Learn and train typing with the ten-finger system";