summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-6/modules/qtwebengine.nix
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-22 07:23:21 +0300
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-06-22 07:23:21 +0300
commit1447a5804b36cd8c40a8969ef540a486ffdb2ed2 (patch)
tree6f01583b459f9fa99ed1cead38867f91a40fd618 /pkgs/development/libraries/qt-6/modules/qtwebengine.nix
parentdf469dd8cd9451eaf082164cd4a83b60fd580b85 (diff)
downloadnixpkgs-1447a5804b36cd8c40a8969ef540a486ffdb2ed2.tar
nixpkgs-1447a5804b36cd8c40a8969ef540a486ffdb2ed2.tar.gz
nixpkgs-1447a5804b36cd8c40a8969ef540a486ffdb2ed2.tar.bz2
nixpkgs-1447a5804b36cd8c40a8969ef540a486ffdb2ed2.tar.lz
nixpkgs-1447a5804b36cd8c40a8969ef540a486ffdb2ed2.tar.xz
nixpkgs-1447a5804b36cd8c40a8969ef540a486ffdb2ed2.tar.zst
nixpkgs-1447a5804b36cd8c40a8969ef540a486ffdb2ed2.zip
qt6.qtwebengine: unbreak on x86_64-darwin
Diffstat (limited to 'pkgs/development/libraries/qt-6/modules/qtwebengine.nix')
-rw-r--r--pkgs/development/libraries/qt-6/modules/qtwebengine.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/libraries/qt-6/modules/qtwebengine.nix b/pkgs/development/libraries/qt-6/modules/qtwebengine.nix
index fadbc5d2bfa..909616d953d 100644
--- a/pkgs/development/libraries/qt-6/modules/qtwebengine.nix
+++ b/pkgs/development/libraries/qt-6/modules/qtwebengine.nix
@@ -66,7 +66,7 @@
 , xkeyboard_config
 , enableProprietaryCodecs ? true
   # darwin
-, clang_14
+, llvmPackages_14
 , bootstrap_cmds
 , cctools
 , xcbuild
@@ -113,7 +113,7 @@ qtModule {
     gn
     nodejs
   ] ++ lib.optionals stdenv.isDarwin [
-    clang_14
+    llvmPackages_14.clang
     bootstrap_cmds
     cctools
     xcbuild
@@ -309,7 +309,6 @@ qtModule {
   meta = with lib; {
     description = "A web engine based on the Chromium web browser";
     platforms = platforms.unix;
-    broken = stdenv.isDarwin && stdenv.isx86_64;
     # This build takes a long time; particularly on slow architectures
     # 1 hour on 32x3.6GHz -> maybe 12 hours on 4x2.4GHz
     timeout = 24 * 3600;