nixpkgs/pkgs/games/quake3/wrapper/default.nix
Eelco Dolstra 3263d078dd * Get the Quake 3 demo data to work with the open source Quake 3.
quake3/demo takes care of downloading and patching the required PAK
  files.  quake3/wrapper calls the Quake binary with a synthesised
  directory of symlinks to activated PAK files.  This should make it
  easy to plug in the commercial PAKs, or third-party mods.

svn path=/nixpkgs/trunk/; revision=4611
2006-01-27 23:51:36 +00:00

8 lines
123 B
Nix

{stdenv, fetchurl, game, paks}:
stdenv.mkDerivation {
name = "quake3";
builder = ./builder.sh;
inherit game paks;
}