mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
geckodriver: init at 0.19.1
This commit is contained in:
parent
bb6257bd3a
commit
b2d6c63810
25
pkgs/development/tools/geckodriver/default.nix
Normal file
25
pkgs/development/tools/geckodriver/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, fetchurl
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
with rustPlatform;
|
||||
|
||||
buildRustPackage rec {
|
||||
version = "0.19.1";
|
||||
name = "geckodriver-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/mozilla/geckodriver/archive/v${version}.tar.gz";
|
||||
sha256 = "04zpv4aiwbig466yj24hhazl5hrapkyvwlhvg0za5599ykzdv47m";
|
||||
};
|
||||
|
||||
cargoSha256 = "1cny8caqcd9p98hra1k7y4d3lb8sxsyaplr0svbwam0d2qc1c257";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers";
|
||||
homepage = https://github.com/mozilla/geckodriver;
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ jraygauthier ];
|
||||
};
|
||||
}
|
@ -1074,6 +1074,8 @@ with pkgs;
|
||||
|
||||
go-dependency-manager = callPackage ../development/tools/gdm { };
|
||||
|
||||
geckodriver = callPackage ../development/tools/geckodriver { };
|
||||
|
||||
geekbench = callPackage ../tools/misc/geekbench { };
|
||||
|
||||
gencfsm = callPackage ../tools/security/gencfsm { };
|
||||
|
Loading…
Reference in New Issue
Block a user