about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2024-04-19 08:05:40 +0200
committerVladimír Čunát <v@cunat.cz>2024-04-19 08:07:59 +0200
commitc979169d1a4b7c6513038777db6ed0c0b0c695bf (patch)
tree6548c9c432abb2d4c08aa72a1ca449ef230964ef /pkgs
parent8c0c955a0938952e7da27de5425c74dc806f05ab (diff)
qt6.qtdeclarative: fixup build on darwin
https://hydra.nixos.org/build/256380975/nixlog/1/tail

I don't have energy to try discovering why exactly the issue happens,
but adding python3 to propagatedBuildInputs or dropping strictDeps
worked when I tried on aarch64-darwin.

I suspect that cmake upgrade might've been what triggered the change.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/qt-6/modules/qtdeclarative.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-6/modules/qtdeclarative.nix b/pkgs/development/libraries/qt-6/modules/qtdeclarative.nix
index f1b4fcb7a8472..e1ed990dc0b38 100644
--- a/pkgs/development/libraries/qt-6/modules/qtdeclarative.nix
+++ b/pkgs/development/libraries/qt-6/modules/qtdeclarative.nix
@@ -11,7 +11,7 @@
 
 qtModule {
   pname = "qtdeclarative";
-  strictDeps = true;
+  strictDeps = !stdenv.isDarwin; # fails to detect python3 otherwise
   propagatedBuildInputs = [ qtbase qtlanguageserver qtshadertools openssl ];
   nativeBuildInputs = [ python3 ];
   patches = [