diff --git a/nixos/tests/retroarch.nix b/nixos/tests/retroarch.nix index d13ed074b9c9..ac03cbffefea 100644 --- a/nixos/tests/retroarch.nix +++ b/nixos/tests/retroarch.nix @@ -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; diff --git a/pkgs/applications/emulators/retroarch/mkLibretroCore.nix b/pkgs/applications/emulators/retroarch/mkLibretroCore.nix index 42124cb23609..d8fb8879e7f5 100644 --- a/pkgs/applications/emulators/retroarch/mkLibretroCore.nix +++ b/pkgs/applications/emulators/retroarch/mkLibretroCore.nix @@ -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; } diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 4efab55ea533..adeff4374024 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -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