From 91c6b4f2a7a881bd4b1e105a845d922ea8e7ea42 Mon Sep 17 00:00:00 2001 From: aw Date: Sun, 14 Jun 2026 09:56:31 -0400 Subject: [PATCH] fix: correct qtdeclarative attr to qt6.qtdeclarative --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 3c11c22..f1dcd6e 100644 --- a/flake.nix +++ b/flake.nix @@ -123,7 +123,7 @@ # hyprland-qt-support: Qt6Qml cross-compile path mismatch hyprland-qt-support = prev.hyprland-qt-support.overrideAttrs (old: { cmakeFlags = (old.cmakeFlags or []) ++ [ - "-DQt6Qml_DIR=${prev.qtdeclarative.dev}/lib/cmake/Qt6Qml" + "-DQt6Qml_DIR=${prev.qt6.qtdeclarative}/lib/cmake/Qt6Qml" ]; }); })