fceux: 2.6.4 -> 2.6.5

Also, pin stdenv to GCC12 - yet another case of updated incompatible C++
standards I suppose.

Oh! Remove it when next version arrives ;)
This commit is contained in:
Anderson Torres 2024-01-20 18:50:20 -03:00
parent 5edaccbf21
commit 2fd4f1f457
2 changed files with 9 additions and 6 deletions

View File

@ -1,24 +1,24 @@
{ lib
, stdenv
, fetchFromGitHub
, SDL2
, cmake
, fetchFromGitHub
, lua
, minizip
, pkg-config
, stdenv
, wrapQtAppsHook
, x264
}:
stdenv.mkDerivation (finalAttrs: {
pname = "fceux";
version = "2.6.4";
version = "2.6.5";
src = fetchFromGitHub {
owner = "TASEmulators";
repo = "fceux";
rev = "fceux-${finalAttrs.version}";
hash = "sha256-Q6r/iBlmi0z40+U6OLZCahS0io4IBBGZMP1mJH7szRM=";
rev = "v${finalAttrs.version}";
hash = "sha256-sY7UyslRPeLw8IDDhx0VObNCUTy3k16Xx3aGBJjxNAk=";
};
nativeBuildInputs = [

View File

@ -2698,7 +2698,10 @@ with pkgs;
emulationstation = callPackage ../applications/emulators/emulationstation { };
fceux = libsForQt5.callPackage ../applications/emulators/fceux { lua = lua5_1; };
fceux = libsForQt5.callPackage ../applications/emulators/fceux {
lua = lua5_1;
stdenv = gcc12Stdenv;
};
firebird-emu = libsForQt5.callPackage ../applications/emulators/firebird-emu { };