Skip to content

Commit

Permalink
libretro: renamed from retroarch
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Nov 23, 2024
1 parent d53fcbe commit 87b438a
Show file tree
Hide file tree
Showing 95 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,24 @@ The basic steps to add a new core are:
## Using RetroArch with cores

To create a custom RetroArch derivation with the cores you want (instead of
using `retroarchFull` that includes all cores), you can use `.override` like
using `retroarch-full` that includes all cores), you can use `.override` like
this:

```nix
{ pkgs, ... }:
let
retroarchWithCores = (pkgs.retroarch.override {
cores = with pkgs.libretro; [
bsnes
mgba
quicknes
];
});
retroarchWithCores = (pkgs.retroarch.withCores (cores: with cores; [
bsnes
mgba
quicknes
]));
in
{
environment.systemPackages = [
retroarchWithCores
];
}
```

For advanced customization, see `wrapRetroArch` wrapper.
2 changes: 1 addition & 1 deletion pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1454,7 +1454,7 @@ with pkgs;

### APPLICATIONS/EMULATORS/RETROARCH

libretro = recurseIntoAttrs (callPackage ../applications/emulators/retroarch/cores.nix { });
libretro = recurseIntoAttrs (callPackage ../applications/emulators/libretro { });

retroarch = retroarch-bare.wrapper { };

Expand Down

0 comments on commit 87b438a

Please sign in to comment.