libretro: fix default meta and passthru (#393840)

authored by Thiago Kenji Okada and committed by GitHub 65eda816 836d6df8

+9 -10
+9 -10
pkgs/applications/emulators/libretro/mkLibretroCore.nix
··· 33 "zlib" 34 35 "core" 36 - "makefile" 37 "extraBuildInputs" 38 "extraNativeBuildInputs" 39 "libretroCore" 40 "normalizeCore" 41 ]; 42 in 43 stdenv.mkDerivation ( ··· 88 updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 89 } // (args.passthru or { }); 90 91 - meta = 92 - with lib; 93 - { 94 - inherit mainProgram; 95 - inherit (retroarch-bare.meta) platforms; 96 - homepage = "https://www.libretro.com/"; 97 - maintainers = with maintainers; teams.libretro.members; 98 - } 99 - // (args.meta or { }); 100 } 101 // extraArgs 102 )
··· 33 "zlib" 34 35 "core" 36 "extraBuildInputs" 37 "extraNativeBuildInputs" 38 "libretroCore" 39 + "makefile" 40 "normalizeCore" 41 + "passthru" 42 + "meta" 43 ]; 44 in 45 stdenv.mkDerivation ( ··· 90 updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 91 } // (args.passthru or { }); 92 93 + meta = { 94 + inherit mainProgram; 95 + inherit (retroarch-bare.meta) platforms; 96 + homepage = "https://www.libretro.com/"; 97 + maintainers = with lib.maintainers; [ ] ++ lib.teams.libretro.members; 98 + } // (args.meta or { }); 99 } 100 // extraArgs 101 )