2007-05-03 18:13:14 +02:00
|
|
|
{stdenv, fetchurl, SDL, zlib, mpeg2dec}:
|
2006-08-09 01:39:03 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-02-06 20:07:54 +01:00
|
|
|
name = "scummvm-0.11.0";
|
2007-05-03 17:24:13 +02:00
|
|
|
|
2006-08-09 01:39:03 +02:00
|
|
|
src = fetchurl {
|
2008-02-06 20:07:54 +01:00
|
|
|
url = mirror://sourceforge/scummvm/scummvm-0.11.0.tar.bz2;
|
|
|
|
sha256 = "106vcknkr07m17rxypavlz3cjyd862bwq1qw1arakcvhhi90mbfl";
|
2007-05-03 17:24:13 +02:00
|
|
|
};
|
|
|
|
|
2007-05-03 18:13:14 +02:00
|
|
|
buildInputs = [SDL zlib mpeg2dec];
|
2007-05-03 17:24:13 +02: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-09 01:39:03 +02:00
|
|
|
};
|
|
|
|
}
|