From 655ae3381662acdeed6a264084397b4dae11ea38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edward=20Tj=C3=B6rnhammar?= Date: Fri, 26 Sep 2014 18:32:14 +0200 Subject: [PATCH] libretro.ppsspp: Fixes building on i686 --- pkgs/misc/emulators/retroarch/cores.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix index 9296b0d932d..a8b74959d90 100644 --- a/pkgs/misc/emulators/retroarch/cores.nix +++ b/pkgs/misc/emulators/retroarch/cores.nix @@ -1,6 +1,5 @@ -{ stdenv, fetchgit, pkgconfig, makeWrapper, python27 -, retroarch, fluidsynth, mesa, SDL, libav, libpng, libjpeg, libvorbis -, zlib }: +{ stdenv, fetchgit, pkgconfig, makeWrapper, python27, retroarch +, fluidsynth, mesa, SDL, ffmpeg, libpng, libjpeg, libvorbis, zlib }: let @@ -179,7 +178,7 @@ in }; description = "ppsspp libretro port"; - extraBuildInputs = [ mesa libav ]; + extraBuildInputs = [ mesa ffmpeg ]; }).override{ buildPhase = "cd libretro && make"; };