chromedriver: fix src download link

Upstream migrated to a new bucket for their chromedriver releases.
See dd90f46119

Our chromium/update.py (and by proxy upstream-info.nix) does not need to
by changed in any way, since it already uses the new API endpoint since
65e801cb43 (which already uses the new
bucket URL).
This commit is contained in:
emilylange 2024-02-21 15:06:31 +01:00
parent c563706a16
commit 46c7c8a777
No known key found for this signature in database
GPG key ID: 0AD773CE46FD0F87

View file

@ -41,7 +41,7 @@ in stdenv.mkDerivation rec {
version = upstream-info.version;
src = fetchurl {
url = "https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/${version}/${spec.system}/chromedriver-${spec.system}.zip";
url = "https://storage.googleapis.com/chrome-for-testing-public/${version}/${spec.system}/chromedriver-${spec.system}.zip";
hash = spec.hash;
};