nixpkgs/pkgs/games/scummvm/default.nix

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

53 lines
1.6 KiB
Nix
Raw Normal View History

2022-12-23 23:21:59 +00:00
{ lib, stdenv, fetchFromGitHub, nasm
, 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";
2022-12-23 23:21:59 +00:00
version = "2.6.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}";
hash = "sha256-fqMMdHBVcXLsBDWxXH9UKXwfvlyIVbRsIPmrYqPGQ+g=";
};
2017-12-18 09:56:37 +00:00
nativeBuildInputs = [ nasm ];
2021-04-11 07:25:38 +00:00
buildInputs = lib.optionals stdenv.isLinux [
alsa-lib
2021-04-11 07:25:38 +00:00
] ++ lib.optionals stdenv.isDarwin [
Cocoa AudioToolbox Carbon CoreMIDI AudioUnit
] ++ [
2022-12-23 23:21:59 +00:00
curl freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libtheora libvorbis libGLU libGL 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.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
'';
meta = with lib; {
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
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 ];
2021-04-11 07:25:38 +00:00
platforms = platforms.unix;
};
}