Jump to content

Super Smash Bros. Melee: Difference between revisions

From Official NixOS Wiki
m add link to B0XX website and fix grammatical error
Added information about running the AppImage on NixOS
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:


== Slippi ==
== Slippi ==
You can use the [https://github.com/lytedev/slippi-nix slippi-nix]flake to declaratively install and configure Slippi with Nix, or get the AppImage directly from [https://slippi.gg/ Slippi's website].
You can use the [https://github.com/lytedev/slippi-nix slippi-nix] flake to declaratively install and configure Slippi with Nix, or get the AppImage directly from [https://slippi.gg/ Slippi's website].
 
If you are using the AppImage, to run Slippi Online or Slippi Playback you will need <code>libcurl.so.4</code> to be in your [[Appimage#Run|appimage-run]] packages. This can be easily added through a package like <code>curlMinimal</code>.
 
<syntaxhighlight lang="nix">
  programs.appimage.package = pkgs.appimage-run.override { extraPkgs = pkgs: [
  pkgs.curlMinimal.out
  ];};
</syntaxhighlight>


== B0XX Emulation ==
== B0XX Emulation ==
[https://b0xx.com/ B0XX controller] emulation can be done via [https://gitlab.com/liamjen/keyb0xx keyb0xx]. A Nix package for keyb0xx can be found [https://codeberg.org/nyxmeowmeow/keyb0xx-nix here].
[https://b0xx.com/ B0XX controller] emulation can be done via [https://gitlab.com/liamjen/keyb0xx keyb0xx]. A Nix package for keyb0xx can be found [https://codeberg.org/nyxmeowmeow/keyb0xx-nix here].
[[Category:Gaming]]
[[Category:Applications]]

Latest revision as of 12:08, 10 April 2026

Super Smash Bros. Melee is a 2001 platform fighter game developed by HAL Laboratory and published by Nintendo.

Slippi

You can use the slippi-nix flake to declaratively install and configure Slippi with Nix, or get the AppImage directly from Slippi's website.

If you are using the AppImage, to run Slippi Online or Slippi Playback you will need libcurl.so.4 to be in your appimage-run packages. This can be easily added through a package like curlMinimal.

  programs.appimage.package = pkgs.appimage-run.override { extraPkgs = pkgs: [
  	pkgs.curlMinimal.out
  ];};

B0XX Emulation

B0XX controller emulation can be done via keyb0xx. A Nix package for keyb0xx can be found here.