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 {
|
2016-05-25 01:32:57 +02:00
|
|
|
name = "scummvm-1.8.0";
|
2016-08-03 22:32:34 +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";
|
2016-05-25 01:32:57 +02:00
|
|
|
sha256 = "0f3zgvz886lk9ps0v333aq74vx6grlx68hg14gfaxcvj55g73v01";
|
2007-05-03 17:24:13 +02:00
|
|
|
};
|
2016-08-03 22:32:34 +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
|
|
|
|
2016-08-03 22:32:34 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
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/;
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2006-08-09 01:39:03 +02:00
|
|
|
};
|
|
|
|
}
|
2011-09-23 04:23:05 +02:00
|
|
|
|