2007-05-03 17:13:14 +01:00
|
|
|
{stdenv, fetchurl, SDL, zlib, mpeg2dec}:
|
2006-08-09 00:39:03 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-04-30 15:01:25 +01:00
|
|
|
name = "scummvm-0.13.1";
|
2007-05-03 16:24:13 +01:00
|
|
|
|
2006-08-09 00:39:03 +01:00
|
|
|
src = fetchurl {
|
2009-04-30 15:01:25 +01:00
|
|
|
url = mirror://sourceforge/scummvm/scummvm-0.13.1.tar.bz2;
|
|
|
|
sha256 = "1nd089673w775xs6hk9z780l18a008z0srli3cf16aq2a8rh1s23";
|
2007-05-03 16:24:13 +01:00
|
|
|
};
|
|
|
|
|
2007-05-03 17:13:14 +01:00
|
|
|
buildInputs = [SDL zlib mpeg2dec];
|
2007-05-03 16:24:13 +01: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 00:39:03 +01:00
|
|
|
};
|
|
|
|
}
|