fceux: update meta

- get rid of nested with
- add AndersonTorres to maintainers
- remove scubed2
- add changelog
This commit is contained in:
Anderson Torres 2024-01-30 07:21:11 -03:00
parent 4c4a215964
commit 5edaccbf21

View File

@ -34,11 +34,12 @@ stdenv.mkDerivation (finalAttrs: {
x264 x264
]; ];
meta = with lib; { meta = {
homepage = "http://www.fceux.com/"; homepage = "http://www.fceux.com/";
description = "A Nintendo Entertainment System (NES) Emulator"; description = "A Nintendo Entertainment System (NES) Emulator";
license = licenses.gpl2Plus; changelog = "https://github.com/TASEmulators/blob/fceux/${finalAttrs.src.rev}/changelog.txt";
maintainers = with maintainers; [ sbruder ]; license = with lib.licenses; [ gpl2Plus ];
platforms = platforms.linux; maintainers = with lib.maintainers; [ AndersonTorres sbruder ];
platforms = lib.platforms.linux;
}; };
}) })