mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
4d5837fc08
This gives by far the best music and general sound quality for games with MIDI support.
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{ stdenv, fetchurl, nasm
|
|
, alsaLib, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, mesa, SDL2, zlib
|
|
, hostPlatform
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "scummvm-${version}";
|
|
version = "2.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://scummvm.org/frs/scummvm/${version}/${name}.tar.xz";
|
|
sha256 = "0q6aiw97wsrf8cjw9vjilzhqqsr2rw2lll99s8i5i9svan6l314p";
|
|
};
|
|
|
|
nativeBuildInputs = [ nasm ];
|
|
|
|
buildInputs = [
|
|
alsaLib freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libvorbis mesa SDL2 zlib
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
configureFlags = [
|
|
"--enable-c++11"
|
|
"--enable-release"
|
|
];
|
|
|
|
crossAttrs = {
|
|
preConfigure = ''
|
|
# Remove the --build flag set by the gcc cross wrapper setup
|
|
# hook
|
|
export configureFlags="--host=${hostPlatform.config}"
|
|
'';
|
|
postConfigure = ''
|
|
# They use 'install -s', that calls the native strip instead of the cross
|
|
sed -i 's/-c -s/-c/' ports.mk;
|
|
'';
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Program to run certain classic graphical point-and-click adventure games (such as Monkey Island)";
|
|
homepage = http://www.scummvm.org/;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.peterhoeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|