pkgs: Use qt6 for simulation craft

This commit is contained in:
traxys 2025-09-16 18:19:29 +02:00 committed by traxys
parent 860c079153
commit 2ba6903166

View file

@ -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 ];
}