retroarch-{bare,full}: renamed from retroarch{Bare,Full}

This commit is contained in:
Thiago Kenji Okada 2024-11-24 02:17:31 +00:00
parent 7ae7e0df86
commit 006b13c56c
3 changed files with 7 additions and 5 deletions

View File

@ -15,7 +15,7 @@ import ./make-test-python.nix (
services.xserver.enable = true;
services.xserver.desktopManager.retroarch = {
enable = true;
package = pkgs.retroarchBare;
package = pkgs.retroarch-bare;
};
services.xserver.displayManager = {
sddm.enable = true;

View File

@ -3,7 +3,7 @@
lib,
stdenv,
makeWrapper,
retroarchBare,
retroarch-bare,
unstableGitUpdater,
zlib,
# Params
@ -28,7 +28,7 @@ let
"lib"
"stdenv"
"makeWrapper"
"retroarchBare"
"retroarch-bare"
"unstableGitUpdater"
"zlib"
@ -73,7 +73,7 @@ stdenv.mkDerivation (
runHook preInstall
install -Dt ${coreDir} ${coreFilename}
makeWrapper ${retroarchBare}/bin/retroarch $out/bin/${mainProgram} \
makeWrapper ${retroarch-bare}/bin/retroarch $out/bin/${mainProgram} \
--add-flags "-L ${coreDir}/${coreFilename}"
runHook postInstall
@ -90,7 +90,7 @@ stdenv.mkDerivation (
with lib;
{
inherit mainProgram;
inherit (retroarchBare.meta) platforms;
inherit (retroarch-bare.meta) platforms;
homepage = "https://www.libretro.com/";
maintainers = with maintainers; teams.libretro.members;
}

View File

@ -1073,6 +1073,8 @@ mapAliases {
relibc = throw "relibc has been removed due to lack of maintenance"; # Added 2024-09-02
replay-sorcery = throw "replay-sorcery has been removed as it is unmaintained upstream. Consider using gpu-screen-recorder or obs-studio instead."; # Added 2024-07-13
restinio_0_6 = throw "restinio_0_6 has been removed from nixpkgs as it's not needed by downstream packages"; # Added 2024-07-04
retroarchBare = retroarch-bare; # Added 2024-11-23
retroarchFull = retroarch-full; # Added 2024-11-23
retroshare06 = retroshare;
rigsofrods = rigsofrods-bin; # Added 2023-03-22
ring-daemon = throw "'ring-daemon' has been renamed to/replaced by 'jami-daemon'"; # Converted to throw 2024-10-17