3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #71054 from MicrosoftTakeover/patch-1

scummvm: 2.0.0 -> 2.1.0
This commit is contained in:
Robin Gloster 2019-10-15 23:41:32 +02:00 committed by GitHub
commit e05e991514
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,22 +1,24 @@
{ stdenv, fetchurl, nasm { stdenv, fetchurl, nasm
, alsaLib, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, libGLU_combined, SDL2, zlib , alsaLib, curl, flac, fluidsynth, freetype, libjpeg, libmad, libmpeg2, libogg, libvorbis, libGLU_combined, SDL2, zlib
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "scummvm"; pname = "scummvm";
version = "2.0.0"; version = "2.1.0";
src = fetchurl { src = fetchurl {
url = "http://scummvm.org/frs/scummvm/${version}/${pname}-${version}.tar.xz"; url = "http://scummvm.org/frs/scummvm/${version}/${pname}-${version}.tar.xz";
sha256 = "0q6aiw97wsrf8cjw9vjilzhqqsr2rw2lll99s8i5i9svan6l314p"; sha256 = "6b50c6596a1536b52865f556dc05ded20f86b6ffabe4bccbd746b5587b15f727";
}; };
nativeBuildInputs = [ nasm ]; nativeBuildInputs = [ nasm ];
buildInputs = [ buildInputs = [
alsaLib freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libvorbis libGLU_combined SDL2 zlib alsaLib curl freetype flac fluidsynth libjpeg libmad libmpeg2 libogg libvorbis libGLU_combined SDL2 zlib
]; ];
dontDisableStatic = true;
enableParallelBuilding = true; enableParallelBuilding = true;
configurePlatforms = [ "host" ]; configurePlatforms = [ "host" ];