geckodriver: 0.26.0 -> 0.29.1 (#119164)

This commit is contained in:
Samir Talwar 2021-04-13 16:05:07 +02:00 committed by GitHub
parent e002b635cd
commit 42e029e48f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 753 additions and 1097 deletions

File diff suppressed because it is too large Load diff

View file

@ -2,28 +2,29 @@
, fetchzip
, rustPlatform
, stdenv
, darwin
, Security
, libiconv
}:
rustPlatform.buildRustPackage {
version = "0.26.0";
version = "0.29.1";
pname = "geckodriver";
sourceRoot = "source/testing/geckodriver";
# Source revisions are noted alongside the binary releases:
# https://github.com/mozilla/geckodriver/releases
src = (fetchzip {
url = "https://hg.mozilla.org/mozilla-central/archive/e9783a644016aa9b317887076618425586730d73.zip/testing";
sha256 = "0m86hqyq1jrr49jkc8mnlmx4bdq281hyxhcrrzacyv20nlqwvd8v";
url = "https://hg.mozilla.org/mozilla-central/archive/970ef713fe58cbc8a29bfb2fb452a57e010bdb08.zip/testing";
sha256 = "0cpx0kx8asqkmz2nyanbmcvhnrsksgd6jp3wlcd0maid3qbyw7s2";
}).overrideAttrs (_: {
# normally guessed by the url's file extension, force it to unpack properly
unpackCmd = "unzip $curSrc";
});
cargoPatches = [ ./cargo-lock.patch ];
cargoSha256 = "1dv8vcjy8r9z19grj4gms05bhaafyr42y3q69h3azwq6dmacfd3y";
cargoSha256 = "1vajlcpyk77v6nvhs737yi8hs7ids9kz0sbwy29rm1vmmfjp2b27";
buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
meta = with lib; {
description = "Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers";

View file

@ -2514,7 +2514,9 @@ in
go-neb = callPackage ../applications/networking/instant-messengers/go-neb { };
geckodriver = callPackage ../development/tools/geckodriver { };
geckodriver = callPackage ../development/tools/geckodriver {
inherit (darwin.apple_sdk.frameworks) Security;
};
geekbench = callPackage ../tools/misc/geekbench { };