nixpkgs/pkgs/games/quake3/wrapper/default.nix
Eelco Dolstra 7219a09001 * ioquake: updated to 1.34rc3.
* rss-glx: fixed the build.
* Removed the OpenGL wrapper stuff, it's no longer needed (thanks to
  the RUNPATH you just need to put the appropriate libGL.so in the
  LD_LIBRARY_PATH). 

svn path=/nixpkgs/trunk/; revision=12093
2008-06-14 20:55:48 +00:00

16 lines
256 B
Nix

{stdenv, fetchurl, game, paks, mesa, name, description, makeWrapper}:
stdenv.mkDerivation {
builder = ./builder.sh;
buildInputs = [makeWrapper];
inherit game paks mesa name;
gcc = stdenv.gcc.gcc;
meta = {
inherit description;
};
}