retroarch: add changelog
This commit is contained in:
parent
1b79b5bb0a
commit
d32ccbc6da
2 changed files with 5 additions and 4 deletions
|
@ -113,6 +113,7 @@ stdenv.mkDerivation rec {
|
|||
description = "Multi-platform emulator frontend for libretro cores";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.unix;
|
||||
changelog = "https://github.com/libretro/RetroArch/blob/v${version}/CHANGES.md";
|
||||
maintainers = with maintainers; [ MP2E edwtjo matthewbauer kolbycrouch thiagokokada ];
|
||||
# FIXME: exits with error on macOS:
|
||||
# No Info.plist file in application bundle or no NSPrincipalClass in the Info.plist file, exiting
|
||||
|
|
|
@ -28,10 +28,10 @@ stdenv.mkDerivation {
|
|||
preferLocalBuild = true;
|
||||
|
||||
meta = with retroarch.meta; {
|
||||
inherit license homepage platforms maintainers;
|
||||
inherit changelog license homepage platforms maintainers;
|
||||
description = description
|
||||
+ " (with cores: "
|
||||
+ lib.concatStringsSep ", " (map (x: ""+x.name) cores)
|
||||
+ ")";
|
||||
+ " (with cores: "
|
||||
+ lib.concatStringsSep ", " (map (x: "${x.name}") cores)
|
||||
+ ")";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue