40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, fetchurl, makeWrapper, jre
|
|
, htmlunit-driver, chromedriver, chromeSupport ? true }:
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
minorVersion = "3.6";
|
|
patchVersion = "0";
|
|
|
|
in stdenv.mkDerivation rec {
|
|
name = "selenium-server-standalone-${version}";
|
|
version = "${minorVersion}.${patchVersion}";
|
|
|
|
src = fetchurl {
|
|
url = "http://selenium-release.storage.googleapis.com/${minorVersion}/selenium-server-standalone-${version}.jar";
|
|
sha256 = "11v340nm8vzqc2bkmbjfm9a7j4dj0bi9bfk8wdpfan0fb8prf772";
|
|
};
|
|
|
|
unpackPhase = "true";
|
|
|
|
buildInputs = [ jre makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share/lib/${name}
|
|
cp $src $out/share/lib/${name}/${name}.jar
|
|
makeWrapper ${jre}/bin/java $out/bin/selenium-server \
|
|
--add-flags "-cp $out/share/lib/${name}/${name}.jar:${htmlunit-driver}/share/lib/${htmlunit-driver.name}/${htmlunit-driver.name}.jar" \
|
|
--add-flags ${optionalString chromeSupport "-Dwebdriver.chrome.driver=${chromedriver}/bin/chromedriver"} \
|
|
--add-flags "org.openqa.grid.selenium.GridLauncherV3"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.seleniumhq.org/;
|
|
description = "Selenium Server for remote WebDriver";
|
|
maintainers = with maintainers; [ coconnor offline ];
|
|
platforms = platforms.all;
|
|
license = licenses.asl20;
|
|
};
|
|
}
|