Merge pull request #71422 from marsam/update-chromedriver

chromedriver: 76.0.3809.68 -> 78.0.3904.11
This commit is contained in:
Mario Rodas 2019-10-23 07:51:11 -05:00 committed by GitHub
commit ea8cb3a8a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,12 +6,12 @@ let
allSpecs = { allSpecs = {
x86_64-linux = { x86_64-linux = {
system = "linux64"; system = "linux64";
sha256 = "04wb6h57daxmnv3a3xrcsznawbx7r8wyi1vk1g26z2l2ppcnsbzv"; sha256 = "155yilj9w8a6jbkx1axhhkizwdc12krl4xixn10j7n94bvny4w2y";
}; };
x86_64-darwin = { x86_64-darwin = {
system = "mac64"; system = "mac64";
sha256 = "0f8j7m8ardaaw8pv02vxhwkqbcm34366bln0np0j0ig21d4fag09"; sha256 = "0dzy9ihhbhx4byr2kalwfbn6jbk1hinacdqi25lvhaprdbrh2igh";
}; };
}; };
@ -28,7 +28,7 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "chromedriver"; pname = "chromedriver";
version = "76.0.3809.68"; version = "78.0.3904.70";
src = fetchurl { src = fetchurl {
url = "https://chromedriver.storage.googleapis.com/${version}/chromedriver_${spec.system}.zip"; url = "https://chromedriver.storage.googleapis.com/${version}/chromedriver_${spec.system}.zip";
@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
homepage = https://sites.google.com/a/chromium.org/chromedriver; homepage = https://sites.google.com/a/chromium.org/chromedriver;
description = "A WebDriver server for running Selenium tests on Chrome"; description = "A WebDriver server for running Selenium tests on Chrome";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = [ maintainers.goibhniu ]; maintainers = [ maintainers.goibhniu maintainers.marsam ];
platforms = attrNames allSpecs; platforms = attrNames allSpecs;
}; };
} }