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
];
meta = with lib; {
meta = {
homepage = "http://www.fceux.com/";
description = "A Nintendo Entertainment System (NES) Emulator";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ sbruder ];
platforms = platforms.linux;
changelog = "https://github.com/TASEmulators/blob/fceux/${finalAttrs.src.rev}/changelog.txt";
license = with lib.licenses; [ gpl2Plus ];
maintainers = with lib.maintainers; [ AndersonTorres sbruder ];
platforms = lib.platforms.linux;
};
})