nixpkgs/pkgs/games/scummvm/default.nix

50 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, nasm
2019-11-10 08:44:34 -08:00
, alsaLib, curl, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, libGLU, libGL, SDL2, zlib
2021-04-11 00:25:38 -07:00
, Cocoa, AudioToolbox, Carbon, CoreMIDI, AudioUnit, cctools
2017-06-28 08:18:11 -07:00
}:
2014-05-03 02:27:12 -07:00
stdenv.mkDerivation rec {
pname = "scummvm";
2020-09-26 02:35:18 -07:00
version = "2.2.0";
2016-08-03 13:32:34 -07:00
src = fetchurl {
url = "http://scummvm.org/frs/scummvm/${version}/${pname}-${version}.tar.xz";
2020-09-26 02:35:18 -07:00
sha256 = "FGllflk72Ky8+sC4ObCG9kDr8SBjPpPxFsq2UrWyc4c=";
};
2017-12-18 01:56:37 -08:00
nativeBuildInputs = [ nasm ];
2021-04-11 00:25:38 -07:00
buildInputs = lib.optionals stdenv.isLinux [
alsaLib
] ++ 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 01:56:37 -08:00
];
dontDisableStatic = true;
2017-12-18 01:56:37 -08:00
enableParallelBuilding = true;
2018-07-23 14:18:39 -07:00
configurePlatforms = [ "host" ];
2017-12-18 01:56:37 -08:00
configureFlags = [
"--enable-c++11"
"--enable-release"
];
2016-08-03 13:32:34 -07:00
2018-07-23 14:18:39 -07:00
# They use 'install -s', that calls the native strip instead of the cross
postConfigure = ''
2018-08-01 07:12:05 -07:00
sed -i "s/-c -s/-c -s --strip-program=''${STRIP@Q}/" ports.mk
2021-04-11 00:25:38 -07:00
'' + lib.optionalString stdenv.isDarwin ''
substituteInPlace config.mk --replace x86_64-apple-darwin-ranlib ${cctools}/bin/ranlib
2018-07-23 14:18:39 -07: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 01:56:37 -08:00
license = licenses.gpl2;
2017-12-18 07:44:06 -08:00
maintainers = [ maintainers.peterhoeg ];
2021-04-11 00:25:38 -07:00
platforms = platforms.unix;
};
}