1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/games/quake3/game/default.nix
Eelco Dolstra 3389f4bc36 * Copy lots of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=4623
2006-01-30 16:04:03 +00:00

12 lines
323 B
Nix

{stdenv, fetchurl, x11, SDL, mesa, openal}:
stdenv.mkDerivation {
name = "quake3-icculus-1.33pre526";
src = fetchurl {
url = http://losser.st-lab.cs.uu.nl/~eelco/dist/quake3-icculus-r526.tar.bz2;
md5 = "63429347b918052c27cdb5c1d15939ad";
};
builder = ./builder.sh;
buildInputs = [x11 SDL mesa openal];
}