From b0dae10ba7b8dc1d90c7afd1735037351089c14a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 18 Apr 2021 09:59:19 +0200 Subject: [PATCH] qt5.qtwebengine, webkitgtk: try harder to avoid timeouts I hope this will improve the situation on aarch64-linux. I don't think it could make anything worse. Recent staging-next timeouts: https://hydra.nixos.org/build/141551270 https://hydra.nixos.org/build/141547098 For now let's not touch meta.timeout, as there's less consensus and the setting seems less reliable in practice, too. --- pkgs/development/libraries/qt-5/modules/qtwebengine.nix | 2 ++ pkgs/development/libraries/webkitgtk/default.nix | 2 ++ 2 files changed, 4 insertions(+) diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix index cd3fa583303d..e2ca47f45f2c 100644 --- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix +++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix @@ -236,6 +236,8 @@ qtModule { sed 's/${lib.head (lib.splitString "-" version)} /${qtCompatVersion} /' -i "$out"/lib/cmake/*/*Config.cmake ''; + requiredSystemFeatures = [ "big-parallel" ]; + meta = with lib; { description = "A web engine based on the Chromium web browser"; maintainers = with maintainers; [ matthewbauer ]; diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index 4dbec69f8f1c..84a9e2a1db77 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -177,6 +177,8 @@ stdenv.mkDerivation rec { patchShebangs . ''; + requiredSystemFeatures = [ "big-parallel" ]; + meta = { description = "Web content rendering engine, GTK port"; homepage = "https://webkitgtk.org/";