summary refs log tree commit diff
path: root/pkgs/games/construo
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2008-08-14 22:04:30 +0000
committerMichael Raskin <7c6f434c@mail.ru>2008-08-14 22:04:30 +0000
commitf1f9e38e9419489ce31f354a428a585bb16d1fa4 (patch)
tree152d12c47fc212076ea349b83a72433cb037178e /pkgs/games/construo
parenta8b28c34affb3bff658eefc97b1c43254a8fa49f (diff)
downloadnixpkgs-f1f9e38e9419489ce31f354a428a585bb16d1fa4.tar
nixpkgs-f1f9e38e9419489ce31f354a428a585bb16d1fa4.tar.gz
nixpkgs-f1f9e38e9419489ce31f354a428a585bb16d1fa4.tar.bz2
nixpkgs-f1f9e38e9419489ce31f354a428a585bb16d1fa4.tar.lz
nixpkgs-f1f9e38e9419489ce31f354a428a585bb16d1fa4.tar.xz
nixpkgs-f1f9e38e9419489ce31f354a428a585bb16d1fa4.tar.zst
nixpkgs-f1f9e38e9419489ce31f354a428a585bb16d1fa4.zip
Big breaking change. I have radically reduced number of nulls used in all-packages.nix and generally switched to composedArgsAndFun which simply adds .meta.function to everything that has come through it.. I have not tested the build, because OO.o has to be updated...
svn path=/nixpkgs/trunk/; revision=12625
Diffstat (limited to 'pkgs/games/construo')
-rw-r--r--pkgs/games/construo/0.2.2.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/games/construo/0.2.2.nix b/pkgs/games/construo/0.2.2.nix
index 969f4e13baa..3d8600b8acd 100644
--- a/pkgs/games/construo/0.2.2.nix
+++ b/pkgs/games/construo/0.2.2.nix
@@ -7,7 +7,7 @@ args : with args;
 		};
 
 		buildInputs = [libX11 zlib xproto]
-		++ (if args ? mesa then [mesa freeglut] else [])
+		++ (if args ? mesa then [args.mesa args.freeglut] else [])
 		;
 		configureFlags = [""];
 	} null; /* null is a terminator for sumArgs */