mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
9f898a586b
can't assume that it will live forever). svn path=/nixpkgs/trunk/; revision=4624
11 lines
315 B
Nix
11 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];
|
|
}
|