summary refs log tree commit diff
path: root/pkgs/games/quake3/wrapper/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/quake3/wrapper/default.nix')
-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 315516f037f..a15efc77c2c 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;
+  };
 }