nixpkgs/pkgs/development/tools/selenium/chromedriver/default.nix
R. RyanTM 083eb53949 chromedriver: 2.36 -> 2.37
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/chromedriver/versions.

These checks were done:

- built on NixOS
- ran `/nix/store/z1h08azp3xdik94is0g2m2y5pvdfy4fc-chromedriver-2.37/bin/chromedriver -h` got 0 exit code
- ran `/nix/store/z1h08azp3xdik94is0g2m2y5pvdfy4fc-chromedriver-2.37/bin/chromedriver --help` got 0 exit code
- ran `/nix/store/z1h08azp3xdik94is0g2m2y5pvdfy4fc-chromedriver-2.37/bin/chromedriver -v` and found version 2.37
- ran `/nix/store/z1h08azp3xdik94is0g2m2y5pvdfy4fc-chromedriver-2.37/bin/chromedriver --version` and found version 2.37
- ran `/nix/store/z1h08azp3xdik94is0g2m2y5pvdfy4fc-chromedriver-2.37/bin/chromedriver -h` and found version 2.37
- ran `/nix/store/z1h08azp3xdik94is0g2m2y5pvdfy4fc-chromedriver-2.37/bin/chromedriver --help` and found version 2.37
- found 2.37 with grep in /nix/store/z1h08azp3xdik94is0g2m2y5pvdfy4fc-chromedriver-2.37
- directory tree listing: https://gist.github.com/d24f8e2019df676c89bb32d16ee980ed
2018-03-31 16:06:10 -07:00

57 lines
1.6 KiB
Nix

{ stdenv, fetchurl, cairo, fontconfig, freetype, gdk_pixbuf, glib
, glibc, gtk2, libX11, makeWrapper, nspr, nss, pango, unzip, gconf
, libXi, libXrender, libXext
}:
let
allSpecs = {
"x86_64-linux" = {
system = "linux64";
sha256 = "1pryrz4ry0pk6kawvj8sxhpqh6c6npxhm187412y2l598dcf9pwl";
};
"x86_64-darwin" = {
system = "mac64";
sha256 = "11hs4mmlvxjaanq41h0dljj4sff0lfwk31svvdmzfg91idlikpsz";
};
};
spec = allSpecs."${stdenv.system}"
or (throw "missing chromedriver binary for ${stdenv.system}");
libs = stdenv.lib.makeLibraryPath [
stdenv.cc.cc.lib
cairo fontconfig freetype
gdk_pixbuf glib gtk2 gconf
libX11 nspr nss pango libXrender
gconf libXext libXi
];
in
stdenv.mkDerivation rec {
name = "chromedriver-${version}";
version = "2.37";
src = fetchurl {
url = "http://chromedriver.storage.googleapis.com/${version}/chromedriver_${spec.system}.zip";
sha256 = spec.sha256;
};
nativeBuildInputs = [ unzip makeWrapper ];
unpackPhase = "unzip $src";
installPhase = ''
install -m755 -D chromedriver $out/bin/chromedriver
'' + stdenv.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"
'';
meta = with stdenv.lib; {
homepage = https://sites.google.com/a/chromium.org/chromedriver;
description = "A WebDriver server for running Selenium tests on Chrome";
license = licenses.bsd3;
maintainers = [ maintainers.goibhniu ];
platforms = attrNames allSpecs;
};
}