chromedriver: Disable on aarch64-darwin
chromedriver_mac64_m1.zip is currently not available anymore and I do not have time to look into it: path is '/nix/store/zhz7hrk94dc0dn7a42czhd1nz9142826-chromedriver_mac64.zip' nix-prefetch-url https://chromedriver.storage.googleapis.com/106.0.5249.61/chromedriver_mac64_m1.zip error: unable to download 'https://chromedriver.storage.googleapis.com/106.0.5249.61/chromedriver_mac64_m1.zip': HTTP error 404 response body: <?xml version='1.0' encoding='UTF-8'?><Error><Code>NoSuchKey</Code><Message>The specified key does not exist.</Message><Details>No such object: chromedriver/106.0.5249.61/chromedriver_mac64_m1.zip</Details></Error>
This commit is contained in:
@@ -70,7 +70,9 @@ def get_matching_chromedriver(version):
|
||||
'version': chromedriver_version,
|
||||
'sha256_linux': nix_prefetch_url(get_chromedriver_url('linux64')),
|
||||
'sha256_darwin': nix_prefetch_url(get_chromedriver_url('mac64')),
|
||||
'sha256_darwin_aarch64': nix_prefetch_url(get_chromedriver_url('mac64_m1'))
|
||||
# TODO: No such object: chromedriver/106.0.5249.61/chromedriver_mac64_m1.zip:
|
||||
# 'sha256_darwin_aarch64': nix_prefetch_url(get_chromedriver_url('mac64_m1'))
|
||||
'sha256_darwin_aarch64': "0000000000000000000000000000000000000000000000000000000000000000"
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -18,10 +18,10 @@ let
|
||||
sha256 = upstream-info.sha256_darwin;
|
||||
};
|
||||
|
||||
aarch64-darwin = {
|
||||
system = "mac64_m1";
|
||||
sha256 = upstream-info.sha256_darwin_aarch64;
|
||||
};
|
||||
# aarch64-darwin = {
|
||||
# system = "mac64_m1";
|
||||
# sha256 = upstream-info.sha256_darwin_aarch64;
|
||||
# };
|
||||
};
|
||||
|
||||
spec = allSpecs.${stdenv.hostPlatform.system}
|
||||
|
||||
Reference in New Issue
Block a user