summary refs log tree commit diff
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2022-02-20 09:58:19 +0000
committerGitHub <noreply@github.com>2022-02-20 09:58:19 +0000
commit98de8579cdf57c490d06460dc3d2ce29b7dadec9 (patch)
tree05a716d3d2e965b5ba14da2e29618698691db1ec
parent461778eaa466bae74c3144a0c441c1d8bd544152 (diff)
parent218a378be676c0f42b2c8049a3d892dceb93bb77 (diff)
downloadnixpkgs-98de8579cdf57c490d06460dc3d2ce29b7dadec9.tar
nixpkgs-98de8579cdf57c490d06460dc3d2ce29b7dadec9.tar.gz
nixpkgs-98de8579cdf57c490d06460dc3d2ce29b7dadec9.tar.bz2
nixpkgs-98de8579cdf57c490d06460dc3d2ce29b7dadec9.tar.lz
nixpkgs-98de8579cdf57c490d06460dc3d2ce29b7dadec9.tar.xz
nixpkgs-98de8579cdf57c490d06460dc3d2ce29b7dadec9.tar.zst
nixpkgs-98de8579cdf57c490d06460dc3d2ce29b7dadec9.zip
Merge pull request #160920 from c0bw3b/pkg/retroarch
retroarch: keep meta.description short
-rw-r--r--pkgs/applications/emulators/retroarch/wrapper.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/emulators/retroarch/wrapper.nix b/pkgs/applications/emulators/retroarch/wrapper.nix
index e667afdf079..b3797c9e9e3 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)
-      + ")";
+      + ".";
   };
 }