retroarch: keep meta.description short

And move additional text to meta.longDescription
This commit is contained in:
Renaud 2022-02-19 17:53:20 +01:00 committed by c0bw3b
parent 3f72667ba1
commit 218a378be6

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)
+ ")";
+ ".";
};
}