From 4fdd2de19691db3623653aadc71b40cb7a721992 Mon Sep 17 00:00:00 2001 From: TheToddLuci0 <26094248+TheToddLuci0@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:42:33 -0500 Subject: [PATCH] Update shell.nix for QT6 (#4100) --- shell.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index f7263f66..976ad456 100644 --- a/shell.nix +++ b/shell.nix @@ -3,9 +3,8 @@ pkgs.mkShell { nativeBuildInputs = with pkgs; [ cmake - qt5.full - qt5.qttools - qt5.qtsvg + kdePackages.qtsvg + kdePackages.qttools ]; - buildInputs = with pkgs; [ qt5.qtbase libsForQt5.kguiaddons ]; + buildInputs = with pkgs; [ kdePackages.qtbase kdePackages.kguiaddons ]; }