From 218a378be676c0f42b2c8049a3d892dceb93bb77 Mon Sep 17 00:00:00 2001 From: Renaud Date: Sat, 19 Feb 2022 17:53:20 +0100 Subject: retroarch: keep meta.description short And move additional text to meta.longDescription --- pkgs/applications/emulators/retroarch/wrapper.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkgs/applications/emulators') diff --git a/pkgs/applications/emulators/retroarch/wrapper.nix b/pkgs/applications/emulators/retroarch/wrapper.nix index e667afdf079c..b3797c9e9e36 100644 --- a/pkgs/applications/emulators/retroarch/wrapper.nix +++ b/pkgs/applications/emulators/retroarch/wrapper.nix @@ -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) - + ")"; + + "."; }; } -- cgit 1.4.1