3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/selenium/chromedriver/default.nix
Dan Peebles b8538c6801 chromedriver: fix on Darwin
A refactor broke it by forcing a bunch of Linux-specific dependencies on
Darwin that only get used in the patchelf invocation.
2017-08-30 11:49:34 -04:00

62 lines
1.7 KiB
Nix

{ stdenv, fetchurl, cairo, fontconfig, freetype, gdk_pixbuf, glib
, glibc, gtk2, libX11, makeWrapper, nspr, nss, pango, unzip, gconf
, libXi, libXrender, libXext
}:
let
allSpecs = {
"i686-linux" = {
system = "linux32";
sha256 = "1qi49rcm7r4b8yqx4akmirilp4ifip89n7inji0pihdqzaw604d4";
};
"x86_64-linux" = {
system = "linux64";
sha256 = "1845nh7kj8scgn85yqwp4nsx7fabcb09w23jp8xa1cxyfvv2wdry";
};
"x86_64-darwin" = {
system = "mac64";
sha256 = "0zyv8i4dbzyk58g4hr5143akgsfaaq9659bwj1m41jwi965grcxa";
};
};
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.31";
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;
};
}