biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / geckodriver / default.nix
bloba6b899e9f2f983477264ee7875d763790d17df1e
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 , stdenv
5 , Security
6 , libiconv
7 }:
9 rustPlatform.buildRustPackage rec {
10   version = "0.34.0";
11   pname = "geckodriver";
13   src = fetchFromGitHub {
14     owner = "mozilla";
15     repo = "geckodriver";
16     rev = "refs/tags/v${version}";
17     sha256 = "sha256-jrF55j3/WKpGl7sJzRmPyaNMbxPqAoXWiuQJsxfIYgc=";
18   };
20   cargoHash = "sha256-4on4aBkRI9PiPgNcxVktTDX28qRy3hvV9+glNB6hT1k=";
22   buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
24   meta = with lib; {
25     description = "Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers";
26     homepage = "https://github.com/mozilla/geckodriver";
27     license = licenses.mpl20;
28     maintainers = with maintainers; [ jraygauthier ];
29     mainProgram = "geckodriver";
30   };