2007-05-03 09:13:14 -07:00
|
|
|
{stdenv, fetchurl, SDL, zlib, mpeg2dec}:
|
2006-08-08 16:39:03 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-02-06 11:07:54 -08:00
|
|
|
name = "scummvm-0.11.0";
|
2007-05-03 08:24:13 -07:00
|
|
|
|
2006-08-08 16:39:03 -07:00
|
|
|
src = fetchurl {
|
2008-02-06 11:07:54 -08:00
|
|
|
url = mirror://sourceforge/scummvm/scummvm-0.11.0.tar.bz2;
|
|
|
|
sha256 = "106vcknkr07m17rxypavlz3cjyd862bwq1qw1arakcvhhi90mbfl";
|
2007-05-03 08:24:13 -07:00
|
|
|
};
|
|
|
|
|
2007-05-03 09:13:14 -07:00
|
|
|
buildInputs = [SDL zlib mpeg2dec];
|
2007-05-03 08:24:13 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
|
|
|
|
homepage = http://www.scummvm.org/;
|
2006-08-08 16:39:03 -07:00
|
|
|
};
|
|
|
|
}
|