Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chromedriver: 83.0.4103.39 -> 85.0.4183.87 #96945

Merged
merged 1 commit into from Sep 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkgs/development/tools/selenium/chromedriver/default.nix
@@ -1,17 +1,17 @@
{ stdenv, fetchurl, cairo, fontconfig, freetype, gdk-pixbuf, glib
, glibc, gtk2, libX11, makeWrapper, nspr, nss, pango, unzip, gconf
, libXi, libXrender, libXext
, libxcb, libXi, libXrender, libXext
}:
let
allSpecs = {
x86_64-linux = {
system = "linux64";
sha256 = "149p43zaz45malmff1274r2bwjcyjwsdickivk3pd0mvnjbfid2r";
sha256 = "0absr1fp2h87gpyw6jxj2f08sbhkkh3pf13145hfyzdvajj5rfjy";
};

x86_64-darwin = {
system = "mac64";
sha256 = "1xpyqxpsz3r653ls67s6alv4g2vr4lxf29gyxc162ikywyrx80nr";
sha256 = "1p9k92fgyx0xis6r50vhcpx3iws2gaspq3dnpigglv3bj9yg8zvi";
};
};

Expand All @@ -23,12 +23,12 @@ let
cairo fontconfig freetype
gdk-pixbuf glib gtk2 gconf
libX11 nspr nss pango libXrender
gconf libXext libXi
gconf libxcb libXext libXi
];
in
stdenv.mkDerivation rec {
pname = "chromedriver";
version = "83.0.4103.39";
version = "85.0.4183.87";

src = fetchurl {
url = "https://chromedriver.storage.googleapis.com/${version}/chromedriver_${spec.system}.zip";
Expand Down