nixpkgs/pkgs/games/quake3/wrapper/default.nix
Eelco Dolstra 6006d61835 * Added a bunch of descriptions.
svn path=/nixpkgs/trunk/; revision=6705
2006-10-11 16:45:55 +00:00

13 lines
245 B
Nix

{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;
};
}