diff options
| author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | 2021-09-29 09:24:17 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-29 09:24:17 +0300 |
| commit | 94255ffab585b08b4e59ff74ab34c385737a436c (patch) | |
| tree | b288e987719b2bcc130ee92d88c333918f40e53a | |
| parent | Merge pull request #139807 from NixOS/backport-135142-to-release-21.05 (diff) | |
| download | nixpkgs-94255ffab585b08b4e59ff74ab34c385737a436c.tar.gz | |
[Backport release-21.05] chromedriver: add dbus to libraries, correct LD_LIBRARY_PATH wrapping (#139838)
* chromedriver: add dbus to libraries
It is apparently required since version 94.
Fixes issue #139547
(cherry picked from commit 433b2bc44487c90c33cb58d87434a287e6d43b15)
* chromedriver: remove extraneous LD_LIBRARY_PATH in wrapProgram
wrapProgram already prepends passed value to the specified environment
variable; no need to specify it explicitly.
(cherry picked from commit 38ddfe7f3ff206888806302539def70b80ef427b)
* chromedriver: add a package test checking the reported version
(cherry picked from commit 1106f4bafc0b444384c171c63ca78b8b6676842e)
* Update pkgs/development/tools/selenium/chromedriver/default.nix
(cherry picked from commit 852612eac99dc403c0ea09a5daca9b65b5b7e123)
Co-authored-by: Ivan Timokhin <nixpkgs@ivan.timokhin.name>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
| -rw-r--r-- | pkgs/development/tools/selenium/chromedriver/default.nix | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix index d777d788aec6..4df279f73133 100644 --- a/pkgs/development/tools/selenium/chromedriver/default.nix +++ b/pkgs/development/tools/selenium/chromedriver/default.nix @@ -1,7 +1,8 @@ { lib, stdenv, fetchurl, unzip, makeWrapper , cairo, fontconfig, freetype, gdk-pixbuf, glib , glibc, gtk2, libX11, nspr, nss, pango, gconf -, libxcb, libXi, libXrender, libXext +, libxcb, libXi, libXrender, libXext, dbus +, testVersion, chromedriver }: let @@ -27,6 +28,7 @@ let gdk-pixbuf glib gtk2 gconf libX11 nspr nss pango libXrender gconf libxcb libXext libXi + dbus ]; in stdenv.mkDerivation rec { @@ -46,9 +48,11 @@ in stdenv.mkDerivation rec { install -m755 -D chromedriver $out/bin/chromedriver '' + lib.optionalString (!stdenv.isDarwin) '' patchelf --set-interpreter ${glibc.out}/lib/ld-linux-x86-64.so.2 $out/bin/chromedriver - wrapProgram "$out/bin/chromedriver" --prefix LD_LIBRARY_PATH : "${libs}:\$LD_LIBRARY_PATH" + wrapProgram "$out/bin/chromedriver" --prefix LD_LIBRARY_PATH : "${libs}" ''; + passthru.tests.version = testVersion { package = chromedriver; }; + meta = with lib; { homepage = "https://chromedriver.chromium.org/"; description = "A WebDriver server for running Selenium tests on Chrome"; |
