summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5
diff options
context:
space:
mode:
authorRobert Hensing <robert@roberthensing.nl>2021-02-16 10:17:55 +0100
committerRobert Hensing <robert@roberthensing.nl>2021-02-16 10:17:55 +0100
commit46a4d53063c7794933f581688e4229a0420af5c7 (patch)
treed68279c2c9439389ae36a55a4b29e67be2b3397f /pkgs/development/libraries/qt-5
parentecc19c0b99d7cdace6f333a3745a533e61fc4935 (diff)
downloadnixpkgs-46a4d53063c7794933f581688e4229a0420af5c7.tar
nixpkgs-46a4d53063c7794933f581688e4229a0420af5c7.tar.gz
nixpkgs-46a4d53063c7794933f581688e4229a0420af5c7.tar.bz2
nixpkgs-46a4d53063c7794933f581688e4229a0420af5c7.tar.lz
nixpkgs-46a4d53063c7794933f581688e4229a0420af5c7.tar.xz
nixpkgs-46a4d53063c7794933f581688e4229a0420af5c7.tar.zst
nixpkgs-46a4d53063c7794933f581688e4229a0420af5c7.zip
qtwebengine: Increase build timeout to 24h
The default 10h timeout caused the cancellation of builds on
aarch64-linux builders.
Perhaps counterintuitively, this wastes resources because it
requires a restart, but never completes.

https://hydra.nixos.org/build/136917190
Diffstat (limited to 'pkgs/development/libraries/qt-5')
-rw-r--r--pkgs/development/libraries/qt-5/modules/qtwebengine.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
index 7e5582cca48..9613eed2874 100644
--- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
+++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix
@@ -229,6 +229,8 @@ qtModule {
     description = "A web engine based on the Chromium web browser";
     maintainers = with maintainers; [ matthewbauer ];
     platforms = platforms.unix;
+    # This build takes a long time; particularly on slow architectures
+    timeout = 24 * 3600;
   };
 
 }