2017-12-26 02:46:12 +00:00
|
|
|
{ stdenv, fetchurl, nasm
|
2019-11-10 16:44:34 +00:00
|
|
|
, alsaLib, curl, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, libGLU, libGL, SDL2, zlib
|
2017-06-28 16:18:11 +01:00
|
|
|
}:
|
2006-08-09 00:39:03 +01:00
|
|
|
|
2014-05-03 10:27:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "scummvm";
|
2020-09-26 10:35:18 +01:00
|
|
|
version = "2.2.0";
|
2016-08-03 21:32:34 +01:00
|
|
|
|
2006-08-09 00:39:03 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://scummvm.org/frs/scummvm/${version}/${pname}-${version}.tar.xz";
|
2020-09-26 10:35:18 +01:00
|
|
|
sha256 = "FGllflk72Ky8+sC4ObCG9kDr8SBjPpPxFsq2UrWyc4c=";
|
2007-05-03 16:24:13 +01:00
|
|
|
};
|
|
|
|
|
2017-12-18 09:56:37 +00:00
|
|
|
nativeBuildInputs = [ nasm ];
|
|
|
|
|
|
|
|
buildInputs = [
|
2019-11-10 16:44:34 +00:00
|
|
|
alsaLib curl freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libvorbis libGLU libGL SDL2 zlib
|
2017-12-18 09:56:37 +00:00
|
|
|
];
|
|
|
|
|
2019-10-12 21:13:08 +01:00
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2017-12-18 09:56:37 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-07-23 22:18:39 +01:00
|
|
|
configurePlatforms = [ "host" ];
|
2017-12-18 09:56:37 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-c++11"
|
|
|
|
"--enable-release"
|
|
|
|
];
|
2016-08-03 21:32:34 +01:00
|
|
|
|
2018-07-23 22:18:39 +01:00
|
|
|
# They use 'install -s', that calls the native strip instead of the cross
|
|
|
|
postConfigure = ''
|
2018-08-01 15:12:05 +01:00
|
|
|
sed -i "s/-c -s/-c -s --strip-program=''${STRIP@Q}/" ports.mk
|
2018-07-23 22:18:39 +01:00
|
|
|
'';
|
2010-08-11 21:14:25 +01:00
|
|
|
|
2017-12-18 09:56:37 +00:00
|
|
|
meta = with stdenv.lib; {
|
2007-05-03 16:24:13 +01:00
|
|
|
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
|
2020-04-03 22:07:56 +01:00
|
|
|
homepage = "https://www.scummvm.org/";
|
2017-12-18 09:56:37 +00:00
|
|
|
license = licenses.gpl2;
|
2017-12-18 15:44:06 +00:00
|
|
|
maintainers = [ maintainers.peterhoeg ];
|
2017-12-18 09:56:37 +00:00
|
|
|
platforms = platforms.linux;
|
2006-08-09 00:39:03 +01:00
|
|
|
};
|
|
|
|
}
|