Merge pull request #160920 from c0bw3b/pkg/retroarch

retroarch: keep meta.description short
This commit is contained in:
Thiago Kenji Okada 2022-02-20 09:58:19 +00:00 committed by GitHub
commit 98de8579cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,10 +28,10 @@ stdenv.mkDerivation {
preferLocalBuild = true;
meta = with retroarch.meta; {
inherit changelog license homepage platforms maintainers;
description = description
+ " (with cores: "
inherit changelog description homepage license maintainers platforms;
longDescription =
"RetroArch is the reference frontend for the libretro API. The following cores are included: "
+ lib.concatStringsSep ", " (map (x: "${x.name}") cores)
+ ")";
+ ".";
};
}