geckodriver: init at 0.19.1

This commit is contained in:
Raymond Gauthier 2017-11-02 23:24:43 -04:00
parent bb6257bd3a
commit b2d6c63810
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };