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:
Marc Weber 2009-03-27 09:39:19 +00:00
parent e3eb124873
commit 63dbfc3aa1
2 changed files with 22 additions and 22 deletions

View File

@ -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"
'';
}

View File

@ -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 {