qtkeychain: fix build on Qt6 (#542271)

This commit is contained in:
K900
2026-07-15 15:47:11 +00:00
committed by GitHub
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
dontWrapQtApps = true;
cmakeFlags = [
"-DBUILD_WITH_QT6=${if lib.versions.major qtbase.version == "6" then "ON" else "OFF"}"
"-DBUILD_WITH_QT5=${if lib.versions.major qtbase.version == "5" then "ON" else "OFF"}"
"-DQT_TRANSLATIONS_DIR=share/qt/translations"
];