summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-11 16:45:55 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-11 16:45:55 +0000
commit6006d61835316e2f3281581e1e8dc6a2cce10c2a (patch)
tree73521efc4401334b0a107e868bd90ca241bd9270 /pkgs/games
parent7d16a56b6f08bf73fb10385a3bfd25a4e9cd2970 (diff)
downloadnixlib-6006d61835316e2f3281581e1e8dc6a2cce10c2a.tar
nixlib-6006d61835316e2f3281581e1e8dc6a2cce10c2a.tar.gz
nixlib-6006d61835316e2f3281581e1e8dc6a2cce10c2a.tar.bz2
nixlib-6006d61835316e2f3281581e1e8dc6a2cce10c2a.tar.lz
nixlib-6006d61835316e2f3281581e1e8dc6a2cce10c2a.tar.xz
nixlib-6006d61835316e2f3281581e1e8dc6a2cce10c2a.tar.zst
nixlib-6006d61835316e2f3281581e1e8dc6a2cce10c2a.zip
* Added a bunch of descriptions.
svn path=/nixpkgs/trunk/; revision=6705
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/quake3/wrapper/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/games/quake3/wrapper/default.nix b/pkgs/games/quake3/wrapper/default.nix
index 315516f037f4..a15efc77c2cb 100644
--- a/pkgs/games/quake3/wrapper/default.nix
+++ b/pkgs/games/quake3/wrapper/default.nix
@@ -1,7 +1,12 @@
-{stdenv, fetchurl, game, paks, mesa, name}:
+{stdenv, fetchurl, game, paks, mesa, name, description}:
 
 stdenv.mkDerivation {
   builder = ./builder.sh;
   inherit game paks mesa name;
+  
   mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
+
+  meta = {
+    inherit description;
+  };
 }