geckodriver: 0.26.0 -> 0.29.1 (#119164)
This commit is contained in:
parent
e002b635cd
commit
42e029e48f
File diff suppressed because it is too large
Load Diff
|
@ -2,28 +2,29 @@
|
||||||
, fetchzip
|
, fetchzip
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, stdenv
|
, stdenv
|
||||||
, darwin
|
, Security
|
||||||
|
, libiconv
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage {
|
rustPlatform.buildRustPackage {
|
||||||
version = "0.26.0";
|
version = "0.29.1";
|
||||||
pname = "geckodriver";
|
pname = "geckodriver";
|
||||||
sourceRoot = "source/testing/geckodriver";
|
sourceRoot = "source/testing/geckodriver";
|
||||||
|
|
||||||
# Source revisions are noted alongside the binary releases:
|
# Source revisions are noted alongside the binary releases:
|
||||||
# https://github.com/mozilla/geckodriver/releases
|
# https://github.com/mozilla/geckodriver/releases
|
||||||
src = (fetchzip {
|
src = (fetchzip {
|
||||||
url = "https://hg.mozilla.org/mozilla-central/archive/e9783a644016aa9b317887076618425586730d73.zip/testing";
|
url = "https://hg.mozilla.org/mozilla-central/archive/970ef713fe58cbc8a29bfb2fb452a57e010bdb08.zip/testing";
|
||||||
sha256 = "0m86hqyq1jrr49jkc8mnlmx4bdq281hyxhcrrzacyv20nlqwvd8v";
|
sha256 = "0cpx0kx8asqkmz2nyanbmcvhnrsksgd6jp3wlcd0maid3qbyw7s2";
|
||||||
}).overrideAttrs (_: {
|
}).overrideAttrs (_: {
|
||||||
# normally guessed by the url's file extension, force it to unpack properly
|
# normally guessed by the url's file extension, force it to unpack properly
|
||||||
unpackCmd = "unzip $curSrc";
|
unpackCmd = "unzip $curSrc";
|
||||||
});
|
});
|
||||||
|
|
||||||
cargoPatches = [ ./cargo-lock.patch ];
|
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; {
|
meta = with lib; {
|
||||||
description = "Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers";
|
description = "Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers";
|
||||||
|
|
|
@ -2514,7 +2514,9 @@ in
|
||||||
|
|
||||||
go-neb = callPackage ../applications/networking/instant-messengers/go-neb { };
|
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 { };
|
geekbench = callPackage ../tools/misc/geekbench { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue