From 2ba690316627468631e54531ba891137ad7c386b Mon Sep 17 00:00:00 2001 From: traxys Date: Tue, 16 Sep 2025 18:19:29 +0200 Subject: [PATCH] =?UTF-8?q?pkgs:=E2=80=AFUse=20qt6=20for=20simulation=20cr?= =?UTF-8?q?aft?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/simulationcraft.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/simulationcraft.nix b/pkgs/simulationcraft.nix index 9e646be..795a410 100644 --- a/pkgs/simulationcraft.nix +++ b/pkgs/simulationcraft.nix @@ -1,7 +1,7 @@ { simulationcraft-src, stdenv, - qt5, + qt6, cmake, curl, }: @@ -12,10 +12,10 @@ stdenv.mkDerivation { src = simulationcraft-src; buildInputs = [ - qt5.qtbase - qt5.qtwebengine + qt6.qtbase + qt6.qtwebengine cmake curl ]; - nativeBuildInputs = [ qt5.wrapQtAppsHook ]; + nativeBuildInputs = [ qt6.wrapQtAppsHook ]; }