nixpkgs/pkgs/games/scummvm/default.nix

43 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, nasm
2019-11-10 16:44:34 +00:00
, alsaLib, curl, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, libGLU, libGL, SDL2, zlib
2017-06-28 15:18:11 +00:00
}:
2014-05-03 09:27:12 +00:00
stdenv.mkDerivation rec {
pname = "scummvm";
2020-04-07 17:27:54 +00:00
version = "2.1.2";
2016-08-03 20:32:34 +00:00
src = fetchurl {
url = "http://scummvm.org/frs/scummvm/${version}/${pname}-${version}.tar.xz";
2020-04-07 17:27:54 +00:00
sha256 = "1c4fz1nfg0nqnqx9iipayhzcsiqdmfxm2i95nw9dbhshhsdnrhf4";
};
2017-12-18 09:56:37 +00:00
nativeBuildInputs = [ nasm ];
buildInputs = [
2019-11-10 16:44:34 +00:00
alsaLib curl freetype flac fluidsynth libjpeg libmad libmpeg2 libogg 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-c++11"
"--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
2018-07-23 21:18:39 +00:00
'';
2017-12-18 09:56:37 +00:00
meta = with stdenv.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 ];
2017-12-18 09:56:37 +00:00
platforms = platforms.linux;
};
}