nixpkgs/pkgs/games/scummvm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
2.0 KiB
Nix
Raw Permalink Normal View History

{ 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
}:
2014-05-03 09:27:12 +00:00
stdenv.mkDerivation rec {
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=";
};
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
];
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
'';
NIX_CFLAGS_COMPILE = [ "-fpermissive" ];
meta = with lib; {
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
mainProgram = "scummvm";
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;
};
}