about summary refs log tree commit diff
path: root/pkgs/games/thePenguinMachine
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/games/thePenguinMachine
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/games/thePenguinMachine')
-rw-r--r--pkgs/games/thePenguinMachine/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/games/thePenguinMachine/default.nix b/pkgs/games/thePenguinMachine/default.nix
index 89f675e083d9..4ce42934b5a5 100644
--- a/pkgs/games/thePenguinMachine/default.nix
+++ b/pkgs/games/thePenguinMachine/default.nix
@@ -1,20 +1,19 @@
-args:
-args.stdenv.mkDerivation {
+args: with args;
+stdenv.mkDerivation {
   name = "thePenguinMachine";
 
-  src = args.
-	fetchurl {
+  src = fetchurl {
 		url = http://www.migniot.com/matrix/projects/thepenguinmachine/ThePenguinMachine.tar.gz;
 		sha256 = "09ljks8vj75g00h3azc83yllbfsrxwmv1c9g32gylcmsshik0dqv";
 	};
 
-  buildInputs =(with args; [python24 pil pygame SDL]);
+  buildInputs = [python24 pil pygame SDL];
 
-  configurePhase = (with args; "
+  configurePhase = "
 		sed -e \"/includes = /aincludes.append('${SDL}/include/SDL')\" -i setup.py;
 		sed -e \"/includes = /aincludes.append('${pygame}/include/python2.4')\" -i setup.py;
 		cat setup.py;
-	");
+	";
   buildPhase = "
 		python setup.py build;
 		python setup.py build_clib;
@@ -22,13 +21,13 @@ args.stdenv.mkDerivation {
 		python setup.py build_py;
 		python setup.py build_scripts;
 		";
-  installPhase = (with args ; "
+  installPhase = "
 		python setup.py install --prefix=\${out}
 		cp -r . /tmp/tpm-build
 		echo 'export PYTHONPATH=$PYTHONPATH:${pygame}/lib/python2.4/site-packages:${pil}/lib/python2.4/site-packages/PIL
 		python ThePenguinMachine.py' >/tmp/tpm-build/tpm.sh; 
 		chmod a+rx /tmp/tpm-build/tpm.sh
-		");
+		";
 
   meta = {
     description = "