about summary refs log tree commit diff
path: root/pkgs/development/tools/selenium
diff options
context:
space:
mode:
authorYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-30 17:20:48 +0000
committerYury G. Kudryashov <urkud.urkud@gmail.com>2008-01-30 17:20:48 +0000
commit5bca69ac34e4b9aaa233aef75396830f42b2d3d7 (patch)
tree8d9c956fd7dcf0a68c46db61ded970e81a98736b /pkgs/development/tools/selenium
parentf831e0420a6b17799bec42fdaaee2f11d8794ff8 (diff)
downloadnixlib-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar
nixlib-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.gz
nixlib-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.bz2
nixlib-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.lz
nixlib-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.xz
nixlib-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.zst
nixlib-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.zip
Nix-expr style review
Unneded args.something replaced with
args: with args;
line. After this line args is the only place where we can recieve variables from.

Also removed several
buildInputs = [];
lines.

svn path=/nixpkgs/trunk/; revision=10415
Diffstat (limited to 'pkgs/development/tools/selenium')
-rw-r--r--pkgs/development/tools/selenium/remote-control/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/selenium/remote-control/default.nix b/pkgs/development/tools/selenium/remote-control/default.nix
index e2bf63264a6d..4c55805e5c8c 100644
--- a/pkgs/development/tools/selenium/remote-control/default.nix
+++ b/pkgs/development/tools/selenium/remote-control/default.nix
@@ -1,8 +1,8 @@
-args:
-args.stdenv.mkDerivation {
+args: with args;
+stdenv.mkDerivation {
   name = "selenium-rc-0.8.3-binary";
 
-  src = args.fetchurl {
+  src = fetchurl {
     url = http://release.openqa.org/cgi-bin/selenium-remote-control-redirect.zip;
     sha256 = "694b46a8440011bcedc4fdc6d01fd91c8b4b4b62b7c6629ace4e745ef47f583e";
   };
@@ -13,7 +13,7 @@ args.stdenv.mkDerivation {
   cp selenium-server-*/*.jar \$out/lib
   ";
 
-  buildInputs =(with args; [unzip]);
+  buildInputs = [unzip];
 
   meta = { 
       description = "test tool for web applications";