9f898a586b
can't assume that it will live forever). svn path=/nixpkgs/trunk/; revision=4624
12 lines
315 B
Nix
12 lines
315 B
Nix
{stdenv, fetchurl, x11, SDL, mesa, openal}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "quake3-icculus-1.33pre526";
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/quake3-icculus-r526.tar.bz2;
|
|
md5 = "63429347b918052c27cdb5c1d15939ad";
|
|
};
|
|
builder = ./builder.sh;
|
|
buildInputs = [x11 SDL mesa openal];
|
|
}
|