about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-07-30 19:53:25 +0200
committerVladimír Čunát <vcunat@gmail.com>2018-07-30 19:53:25 +0200
commit437b604354646db5ae263b11e5b5866b581412b8 (patch)
tree230c73388643a13b58fd419c6a4d713acdfcc562 /pkgs/applications
parent5c4b20303207f3c808bdefaa3ff16f3165f748ca (diff)
parent7679891e2b41f13cfcb3692e9e26d5f9cfa4edb2 (diff)
downloadnixlib-437b604354646db5ae263b11e5b5866b581412b8.tar
nixlib-437b604354646db5ae263b11e5b5866b581412b8.tar.gz
nixlib-437b604354646db5ae263b11e5b5866b581412b8.tar.bz2
nixlib-437b604354646db5ae263b11e5b5866b581412b8.tar.lz
nixlib-437b604354646db5ae263b11e5b5866b581412b8.tar.xz
nixlib-437b604354646db5ae263b11e5b5866b581412b8.tar.zst
nixlib-437b604354646db5ae263b11e5b5866b581412b8.zip
Merge #44225: chromium: Increase build timout to two days
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/chromium/browser.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/chromium/browser.nix b/pkgs/applications/networking/browsers/chromium/browser.nix
index cca26b541240..f31ff05a42bb 100644
--- a/pkgs/applications/networking/browsers/chromium/browser.nix
+++ b/pkgs/applications/networking/browsers/chromium/browser.nix
@@ -51,6 +51,6 @@ mkChromiumDerivation (base: rec {
     license = licenses.bsd3;
     platforms = platforms.linux;
     hydraPlatforms = if channel == "stable" then ["aarch64-linux" "x86_64-linux"] else [];
-    timeout = 86400; # 24 hours
+    timeout = 172800; # 48 hours
   };
 })