lutris: propagate important meta attrs to FHSEnv wrapper

Closes https://github.com/NixOS/nixpkgs/pull/81107

(cherry picked from commit 1fc860b9ede1dfa95a7eefdc34e890e822006d4f)
This commit is contained in:
Atemu 2021-09-22 22:17:32 +02:00 committed by github-actions[bot]
parent 605dc2af25
commit 3c07a4fe8e
1 changed files with 12 additions and 0 deletions

View File

@ -117,4 +117,16 @@ in buildFHSUserEnv {
ln -sf ${lutris-unwrapped}/share/applications $out/share ln -sf ${lutris-unwrapped}/share/applications $out/share
ln -sf ${lutris-unwrapped}/share/icons $out/share ln -sf ${lutris-unwrapped}/share/icons $out/share
''; '';
meta = {
inherit (lutris-unwrapped.meta)
homepage
description
platforms
license
maintainers
broken;
mainProgram = "lutris";
};
} }