about summary refs log tree commit diff
path: root/pkgs/applications/emulators/zsnes
AgeCommit message (Collapse)AuthorFilesLines
2023-02-22treewide: move NIX_CFLAGS_COMPILE to the env attrsetArtturin2-2/+2
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
2023-02-22treewide: use toString on list NIX_CFLAGS_COMPILEArtturin1-1/+1
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper
2023-01-22zsnes2: init at 2.0.10Anderson Torres1-0/+63
2022-11-06zsnes: pin to c++14 to fix build with gcc-11Sergei Trofimovich1-1/+2
Without the change build on `master` fails as: jma/jma.h:67:28: error: ISO C++17 does not allow dynamic exception specifications 67 | jma_open(const char *) throw(jma_errors); | ^~~~~ ZHF: https://github.com/NixOS/nixpkgs/issues/199919
2022-06-05zsnes: add -fcommon workaroundSergei Trofimovich1-0/+4
Workaround build failure on -fno-common toolchains like upstream gcc-10. Otherwise build fails as: ld: initc.o:(.bss+0x28): multiple definition of `HacksDisable'; cfg.o:(.bss+0x59e3): first defined here
2022-02-25treewide: switch all desktop file generators to new APIK9001-1/+1
Notably: - remove explicit arguments that match the defaults - convert everything to the right Nix types
2022-02-16Move misc/emulators to applications/emulators - part 1AndersonTorres1-0/+64
Emulators form a class by themselves. So, they should be moved to applications/.