Unverified Commit 46c7c8a7 authored by emilylange's avatar emilylange
Browse files

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
65e801cb (which already uses the new
bucket URL).
parent c563706a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  };