add scummvm (scummvm.sf.net)

svn path=/nixpkgs/trunk/; revision=6079
This commit is contained in:
Armijn Hemel 2006-08-08 23:39:03 +00:00
parent 7154adfa34
commit d9ec01e77f
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, SDL}:
stdenv.mkDerivation {
name = "scummvm-0.9.0";
src = fetchurl {
url = http://surfnet.dl.sourceforge.net/sourceforge/scummvm/scummvm-0.9.0.tar.bz2;
md5 = "5eede9c97d1883f80770a3e211419783";
};
buildInputs = [SDL];
}

View file

@ -2491,6 +2491,10 @@ rec {
inherit (xlibs) xlibs;
};
scummvm = (import ../games/scummvm) {
inherit fetchurl stdenv SDL;
};
quake3game = import ../games/quake3/game {
inherit fetchurl stdenv x11 SDL mesa openal;
};