Remove Selenium Remote Control
No longer builds and was a dodgy process anyways
This commit is contained in:
parent
66bdac04e8
commit
ad43f28e07
@ -1,49 +0,0 @@
|
|||||||
{ stdenv, fetchurl, jre }:
|
|
||||||
|
|
||||||
# let version = "1.0-beta-2";
|
|
||||||
let version = "1.0-SNAPSHOT-standalone";
|
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
|
||||||
/*
|
|
||||||
|
|
||||||
Use this if there is another release..
|
|
||||||
|
|
||||||
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";
|
|
||||||
};
|
|
||||||
buildInputs = [unzip];
|
|
||||||
phases = "unpackPhase buildPhase";
|
|
||||||
buildPhase = ''
|
|
||||||
mkdir -p $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
|
|
||||||
chmod +x "$bin"
|
|
||||||
'';
|
|
||||||
*/
|
|
||||||
|
|
||||||
# this snapshot version starts a firefox from a script file. It only issues a warning about it
|
|
||||||
# you still have to pass -DfirefoxDefaultPath=/home/marc/.nix-profile/bin/firefox or such..
|
|
||||||
name = "selenium-remote-control-${version}-dist";
|
|
||||||
# this dist file has been created using mvn package -Dmaven.test.skip=true based on svn rev 2450
|
|
||||||
src = fetchurl {
|
|
||||||
url = "http://mawercer.de/~nix/selenium-server-1.0-SNAPSHOT-standalone.jar";
|
|
||||||
sha256 = "1lqr72a3lmmww1psl19pzp91c9q1dm0314b7y7mz1gnfpwc49y38";
|
|
||||||
};
|
|
||||||
phases = "buildPhase";
|
|
||||||
buildPhase = ''
|
|
||||||
mkdir -p $out/{bin,lib}
|
|
||||||
cp $src $out/lib/
|
|
||||||
bin="$out/bin/selenium-remote-control"
|
|
||||||
cat >> "$bin" << EOF
|
|
||||||
#!/bin/sh
|
|
||||||
exec ${jre}/bin/java -jar "$out/lib/$(basename $src)" "\$@"
|
|
||||||
EOF
|
|
||||||
chmod +x "$bin"
|
|
||||||
'';
|
|
||||||
}
|
|
@ -6337,11 +6337,6 @@ in
|
|||||||
|
|
||||||
sauce-connect = callPackage ../development/tools/sauce-connect { };
|
sauce-connect = callPackage ../development/tools/sauce-connect { };
|
||||||
|
|
||||||
# couldn't find the source yet
|
|
||||||
seleniumRCBin = callPackage ../development/tools/selenium/remote-control {
|
|
||||||
jre = jdk;
|
|
||||||
};
|
|
||||||
|
|
||||||
selenium-server-standalone = callPackage ../development/tools/selenium/server { };
|
selenium-server-standalone = callPackage ../development/tools/selenium/server { };
|
||||||
|
|
||||||
selendroid = callPackage ../development/tools/selenium/selendroid { };
|
selendroid = callPackage ../development/tools/selenium/selendroid { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user