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