2024-10-25 17:52:20 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, nasm
|
2022-12-23 23:21:59 +00:00
|
|
|
, alsa-lib, curl, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libtheora, libvorbis, libGLU, libGL, SDL2, zlib
|
2021-04-11 07:25:38 +00:00
|
|
|
, Cocoa, AudioToolbox, Carbon, CoreMIDI, AudioUnit, cctools
|
2017-06-28 15:18:11 +00:00
|
|
|
}:
|
2006-08-08 23:39:03 +00:00
|
|
|
|
2014-05-03 09:27:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "scummvm";
|
2024-03-16 12:26:12 +00:00
|
|
|
version = "2.8.1";
|
2016-08-03 20:32:34 +00:00
|
|
|
|
2022-12-23 23:21:59 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "scummvm";
|
|
|
|
repo = "scummvm";
|
|
|
|
rev = "v${version}";
|
2024-03-16 12:26:12 +00:00
|
|
|
hash = "sha256-8/q16MwHhbbmUxiwJOHkjNxrnBB4grMa7qw/n3KLvRc=";
|
2007-05-03 15:24:13 +00:00
|
|
|
};
|
|
|
|
|
2024-10-25 17:52:20 +00:00
|
|
|
patches = [
|
|
|
|
# Fix building with Freetype 2.13.3. Remove after next release.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/scummvm/scummvm/commit/65977961b20ba97b1213b5267da0cb1efb49063b.patch?full_index=1";
|
|
|
|
hash = "sha256-e5dJd3gP8OAD3hEJlvOhMemsNErCKTn7avlprApFig0=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-12-18 09:56:37 +00:00
|
|
|
nativeBuildInputs = [ nasm ];
|
|
|
|
|
2021-04-11 07:25:38 +00:00
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
|
2023-11-16 21:59:53 +00:00
|
|
|
alsa-lib libGLU libGL
|
2021-04-11 07:25:38 +00:00
|
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
|
|
Cocoa AudioToolbox Carbon CoreMIDI AudioUnit
|
|
|
|
] ++ [
|
2023-11-16 21:59:53 +00:00
|
|
|
curl freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libtheora libvorbis SDL2 zlib
|
2017-12-18 09:56:37 +00:00
|
|
|
];
|
|
|
|
|
2019-10-12 20:13:08 +00:00
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2017-12-18 09:56:37 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-07-23 21:18:39 +00:00
|
|
|
configurePlatforms = [ "host" ];
|
2017-12-18 09:56:37 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-release"
|
|
|
|
];
|
2016-08-03 20:32:34 +00:00
|
|
|
|
2018-07-23 21:18:39 +00:00
|
|
|
# They use 'install -s', that calls the native strip instead of the cross
|
|
|
|
postConfigure = ''
|
2018-08-01 14:12:05 +00:00
|
|
|
sed -i "s/-c -s/-c -s --strip-program=''${STRIP@Q}/" ports.mk
|
2021-04-11 07:25:38 +00:00
|
|
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
2022-12-09 02:56:37 +00:00
|
|
|
substituteInPlace config.mk \
|
|
|
|
--replace x86_64-apple-darwin-ranlib ${cctools}/bin/ranlib \
|
|
|
|
--replace aarch64-apple-darwin-ranlib ${cctools}/bin/ranlib
|
2018-07-23 21:18:39 +00:00
|
|
|
'';
|
2010-08-11 20:14:25 +00:00
|
|
|
|
2024-10-13 07:12:01 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2007-05-03 15:24:13 +00:00
|
|
|
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "scummvm";
|
2020-04-03 21:07:56 +00:00
|
|
|
homepage = "https://www.scummvm.org/";
|
2024-07-03 09:37:36 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2017-12-18 15:44:06 +00:00
|
|
|
maintainers = [ maintainers.peterhoeg ];
|
2021-04-11 07:25:38 +00:00
|
|
|
platforms = platforms.unix;
|
2006-08-08 23:39:03 +00:00
|
|
|
};
|
|
|
|
}
|