nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

qgnomeplatform: CMake4 fix (#449396)

authored by

Yohann Boniface and committed by
GitHub
7406ea46 52077cd2

+3
+3
pkgs/development/libraries/qgnomeplatform/default.nix
··· 62 62 cmakeFlags = [ 63 63 "-DGLIB_SCHEMAS_DIR=${glib.getSchemaPath gsettings-desktop-schemas}" 64 64 "-DQT_PLUGINS_DIR=${placeholder "out"}/${qtbase.qtPluginPrefix}" 65 + 66 + # Workaround CMake 4 compat 67 + (lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.31") 65 68 ] 66 69 ++ lib.optionals useQt6 [ 67 70 "-DUSE_QT6=true"