about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-07-21 00:25:51 +0200
committerMichael Weiss <dev.primeos@gmail.com>2021-07-21 11:20:38 +0200
commit97570d30c7f632e6ca25cf8e966d2a4b7e5aa546 (patch)
tree463bf7cc32dc619817e03524e3eaea96541284db /nixos
parent07a363dba187f0e8e8570592eb6f62d14e8df34e (diff)
downloadnixlib-97570d30c7f632e6ca25cf8e966d2a4b7e5aa546.tar
nixlib-97570d30c7f632e6ca25cf8e966d2a4b7e5aa546.tar.gz
nixlib-97570d30c7f632e6ca25cf8e966d2a4b7e5aa546.tar.bz2
nixlib-97570d30c7f632e6ca25cf8e966d2a4b7e5aa546.tar.lz
nixlib-97570d30c7f632e6ca25cf8e966d2a4b7e5aa546.tar.xz
nixlib-97570d30c7f632e6ca25cf8e966d2a4b7e5aa546.tar.zst
nixlib-97570d30c7f632e6ca25cf8e966d2a4b7e5aa546.zip
chromium: 91.0.4472.164 -> 92.0.4515.107
https://chromereleases.googleblog.com/2021/07/stable-channel-update-for-desktop_20.html

This update includes 35 security fixes.

CVEs:
CVE-2021-30565 CVE-2021-30566 CVE-2021-30567 CVE-2021-30568
CVE-2021-30569 CVE-2021-30571 CVE-2021-30572 CVE-2021-30573
CVE-2021-30574 CVE-2021-30575 CVE-2021-30576 CVE-2021-30577
CVE-2021-30578 CVE-2021-30579 CVE-2021-30580 CVE-2021-30581
CVE-2021-30582 CVE-2021-30583 CVE-2021-30584 CVE-2021-30585
CVE-2021-30586 CVE-2021-30587 CVE-2021-30588 CVE-2021-30589

Note: This won't be the smoothest update. Chromium seems to be fine but
requires gtk3 in $LD_LIBRARY_PATH to find libgtk-3.so.0 (otherwise it
crashes during startup) but Google Chrome fails to initialize
("GPU process exited unexpectedly: exit_code=132") and requires
"--use-gl=angle --use-angle=swiftshader" for hardware(?) acceleration
(which seems to work work fine and performant but SwiftShader should
actually use the CPU instead of the GPU).
Diffstat (limited to 'nixos')
-rw-r--r--nixos/tests/chromium.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/tests/chromium.nix b/nixos/tests/chromium.nix
index d2a8f276f120..c4ad73679b7e 100644
--- a/nixos/tests/chromium.nix
+++ b/nixos/tests/chromium.nix
@@ -81,7 +81,7 @@ mapAttrs (channel: chromiumPkg: makeTest rec {
         # Add optional CLI options:
         options = []
         major_version = "${versions.major (getVersion chromiumPkg.name)}"
-        if major_version > "91":
+        if major_version > "91" and pname.startswith("google-chrome"):
             # To avoid a GPU crash:
             options += ["--use-gl=angle", "--use-angle=swiftshader"]
         options.append("file://${startupHTML}")