From 8afca7315db85c02ef864406ebb7ae2fdba1ae9b Mon Sep 17 00:00:00 2001 From: Thierry Pouplier 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" ]; }); })