chromedriver: fix src download link

Upstream migrated to a new bucket for their chromedriver releases.
See https://github.com/GoogleChromeLabs/chrome-for-testing/commit/dd90f461197402d01208a690b58f8a7776db6e7c

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
@@ -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;
};