mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
selenium remote control version bump to 1.0-beta-2
renamed attr to seleniumRCBin and adding selenium-remote-control-1.0-beta-2 run script svn path=/nixpkgs/trunk/; revision=14734
This commit is contained in:
parent
e3eb124873
commit
63dbfc3aa1
@ -1,23 +1,22 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "selenium-rc-0.8.3-binary";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://release.openqa.org/cgi-bin/selenium-remote-control-redirect.zip;
|
||||
sha256 = "694b46a8440011bcedc4fdc6d01fd91c8b4b4b62b7c6629ace4e745ef47f583e";
|
||||
};
|
||||
|
||||
phases = "installPhase";
|
||||
installPhase = "
|
||||
ensureDir \$out/lib
|
||||
cp selenium-server-*/*.jar \$out/lib
|
||||
";
|
||||
|
||||
buildInputs = [unzip];
|
||||
|
||||
meta = {
|
||||
description = "test tool for web applications";
|
||||
homepage = http://www.openqa.org/selenium-c;
|
||||
license = "";
|
||||
};
|
||||
let version = "1.0-beta-2";
|
||||
in stdenv.mkDerivation {
|
||||
name = "selenium-remote-control-${version}-dist";
|
||||
src = fetchurl {
|
||||
url = "http://release.seleniumhq.org/selenium-remote-control/${version}/selenium-remote-control-${version}-dist.zip";
|
||||
sha256 = "0ciyfqvnv0117l2rhw9dclv85mcf3czpimvybj38v3syl7m7yk41";
|
||||
};
|
||||
phases = "unpackPhase buildPhase";
|
||||
buildInputs = [unzip];
|
||||
buildPhase = ''
|
||||
ensureDir $out/{bin,lib}
|
||||
mv * $out/lib
|
||||
bin="$out/bin/selenium-remote-control"
|
||||
cat >> "$bin" << EOF
|
||||
#!/bin/sh
|
||||
exec ${jre}/bin/java -jar $out/lib/selenium-server-${version}/selenium-server.jar "\$@"
|
||||
EOF
|
||||
echo chmod +x "$bin"
|
||||
chmod +x "$bin"
|
||||
'';
|
||||
}
|
||||
|
@ -2582,8 +2582,9 @@ let
|
||||
};
|
||||
|
||||
# couldn't find the source yet
|
||||
selenium_rc_binary = import ../development/tools/selenium/remote-control {
|
||||
seleniumRCBin = import ../development/tools/selenium/remote-control {
|
||||
inherit fetchurl stdenv unzip;
|
||||
jre = jdk;
|
||||
};
|
||||
|
||||
scons = import ../development/tools/build-managers/scons {
|
||||
|
Loading…
Reference in New Issue
Block a user