summary refs log tree commit diff
path: root/pkgs/development/libraries/SDL_image
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/libraries/SDL_image
parentf831e0420a6b17799bec42fdaaee2f11d8794ff8 (diff)
downloadnixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.gz
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.bz2
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.lz
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.xz
nixpkgs-5bca69ac34e4b9aaa233aef75396830f42b2d3d7.tar.zst
nixpkgs-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/libraries/SDL_image')
-rw-r--r--pkgs/development/libraries/SDL_image/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/libraries/SDL_image/default.nix b/pkgs/development/libraries/SDL_image/default.nix
index 93e1cc31f44..4dd7d3679b8 100644
--- a/pkgs/development/libraries/SDL_image/default.nix
+++ b/pkgs/development/libraries/SDL_image/default.nix
@@ -1,14 +1,13 @@
-args:
-args.stdenv.mkDerivation {
+args: with args;
+stdenv.mkDerivation {
   name = "SDL_image-1.2.6";
 
-  src = args.
-	fetchurl {
+  src = fetchurl {
 		url = http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.6.tar.gz;
 		sha256 = "1i3f72dw3i3l6d77dk81gw57sp0629rng9k76qb37brlz7dv3z48";
 	};
 
-  buildInputs =(with args; [SDL libpng libjpeg libtiff libungif libXpm]);
+  buildInputs = [SDL libpng libjpeg libtiff libungif libXpm];
 
   postInstall = "ln -s \${out}/include/SDL/SDL_image.h \${out}/include/";