* Put a tarball of the Quake 3 sources somewhere.

svn path=/nixpkgs/trunk/; revision=4596
This commit is contained in:
Eelco Dolstra 2006-01-26 15:31:37 +00:00
parent 059858741c
commit d24417654c
2 changed files with 5 additions and 4 deletions

View file

@ -8,5 +8,3 @@ preInstall() {
}
genericBuild
exit 1

View file

@ -27,7 +27,10 @@ Idem for adding the various *.pak files.
stdenv.mkDerivation {
name = "quake3-icculus-1.33pre526";
src = /tmp/quake3-r526;
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];
}
}