* Latest ScummVM.

svn path=/nixpkgs/trunk/; revision=8652
This commit is contained in:
Eelco Dolstra 2007-05-03 15:24:13 +00:00
parent 74ac11507f
commit a533c69b39
2 changed files with 13 additions and 6 deletions

View file

@ -1,10 +1,17 @@
{stdenv, fetchurl, SDL}:
{stdenv, fetchurl, SDL, zlib, alsaLib}:
stdenv.mkDerivation {
name = "scummvm-0.9.0";
name = "scummvm-0.9.1";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/scummvm-0.9.0.tar.bz2;
md5 = "5eede9c97d1883f80770a3e211419783";
url = http://ovh.dl.sourceforge.net/sourceforge/scummvm/scummvm-0.9.1.tar.bz2;
sha256 = "06jxq4lbb0s1axpz0md8cjkx8i8086qgkafrhlfzi941cb0dkmaw";
};
buildInputs = [SDL zlib alsaLib];
meta = {
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
homepage = http://www.scummvm.org/;
};
buildInputs = [SDL];
}

View file

@ -3023,7 +3023,7 @@ rec {
};
scummvm = import ../games/scummvm {
inherit fetchurl stdenv SDL;
inherit fetchurl stdenv SDL zlib alsaLib;
};
ut2004demo = import ../games/ut2004demo {