retroarch: add changelog

This commit is contained in:
Thiago Kenji Okada 2022-01-22 11:01:48 -03:00
parent 1b79b5bb0a
commit d32ccbc6da
2 changed files with 5 additions and 4 deletions

View file

@ -113,6 +113,7 @@ stdenv.mkDerivation rec {
description = "Multi-platform emulator frontend for libretro cores"; description = "Multi-platform emulator frontend for libretro cores";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = platforms.unix; platforms = platforms.unix;
changelog = "https://github.com/libretro/RetroArch/blob/v${version}/CHANGES.md";
maintainers = with maintainers; [ MP2E edwtjo matthewbauer kolbycrouch thiagokokada ]; maintainers = with maintainers; [ MP2E edwtjo matthewbauer kolbycrouch thiagokokada ];
# FIXME: exits with error on macOS: # FIXME: exits with error on macOS:
# No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting # No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting

View file

@ -28,10 +28,10 @@ stdenv.mkDerivation {
preferLocalBuild = true; preferLocalBuild = true;
meta = with retroarch.meta; { meta = with retroarch.meta; {
inherit license homepage platforms maintainers; inherit changelog license homepage platforms maintainers;
description = description description = description
+ " (with cores: " + " (with cores: "
+ lib.concatStringsSep ", " (map (x: ""+x.name) cores) + lib.concatStringsSep ", " (map (x: "${x.name}") cores)
+ ")"; + ")";
}; };
} }