2011-09-23 04:23:05 +02:00
|
|
|
{ stdenv, fetchurl, SDL, zlib, libmpeg2, libmad, libogg, libvorbis, flac, alsaLib }:
|
2006-08-09 01:39:03 +02:00
|
|
|
|
2014-05-03 11:27:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-07-30 20:26:29 +02:00
|
|
|
name = "scummvm-1.7.0";
|
2007-05-03 17:24:13 +02:00
|
|
|
|
2006-08-09 01:39:03 +02:00
|
|
|
src = fetchurl {
|
2014-05-03 11:27:12 +02:00
|
|
|
url = "mirror://sourceforge/scummvm/${name}.tar.bz2";
|
2014-07-30 20:26:29 +02:00
|
|
|
sha256 = "d9ff0e8cf911afa466d5456d28fef692a17d47ddecfd428bf2fef591237c2e66";
|
2007-05-03 17:24:13 +02:00
|
|
|
};
|
|
|
|
|
2011-09-23 04:23:05 +02:00
|
|
|
buildInputs = [ SDL zlib libmpeg2 libmad libogg libvorbis flac alsaLib ];
|
2007-05-03 17:24:13 +02:00
|
|
|
|
2010-08-11 22:14:25 +02:00
|
|
|
crossAttrs = {
|
|
|
|
preConfigure = ''
|
|
|
|
# Remove the --build flag set by the gcc cross wrapper setup
|
|
|
|
# hook
|
|
|
|
export configureFlags="--host=${stdenv.cross.config}"
|
|
|
|
'';
|
|
|
|
postConfigure = ''
|
|
|
|
# They use 'install -s', that calls the native strip instead of the cross
|
|
|
|
sed -i 's/-c -s/-c/' ports.mk;
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|
2011-09-23 04:23:05 +02:00
|
|
|
|