From d24417654ca71ad02a060d4ea21f70159471d92b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 26 Jan 2006 15:31:37 +0000 Subject: [PATCH] * Put a tarball of the Quake 3 sources somewhere. svn path=/nixpkgs/trunk/; revision=4596 --- pkgs/games/quake3/builder.sh | 2 -- pkgs/games/quake3/default.nix | 7 +++++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/games/quake3/builder.sh b/pkgs/games/quake3/builder.sh index a2f93d60e4c..82025c76903 100644 --- a/pkgs/games/quake3/builder.sh +++ b/pkgs/games/quake3/builder.sh @@ -8,5 +8,3 @@ preInstall() { } genericBuild - -exit 1 diff --git a/pkgs/games/quake3/default.nix b/pkgs/games/quake3/default.nix index 57cfc2470b7..52fe5dbee26 100644 --- a/pkgs/games/quake3/default.nix +++ b/pkgs/games/quake3/default.nix @@ -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]; -} \ No newline at end of file +}