Package Details: ryujinx-git r4809.153d632ee-1

Git Clone URL: https://aur.archlinux.org/ryujinx-git.git (read-only, click to copy)
Package Base: ryujinx-git
Description: Experimental Nintendo Switch Emulator written in C#
Upstream URL: https://ryujinx.app
Licenses: MIT
Submitter: username227
Maintainer: username227
Last Packager: username227
Votes: 4
Popularity: 0.002733
First Submitted: 2024-10-30 17:55 (UTC)
Last Updated: 2026-05-31 02:31 (UTC)

Latest Comments

1 2 Next › Last »

username227 commented on 2026-04-19 22:42 (UTC)

@rubin55, per Discord, the server is down for maintenance while they look into why people are getting slow downloads.

rubin55 commented on 2026-04-19 21:09 (UTC)

I can't access the git repo anymore, I am getting a login prompt?

I seem to be redirected here: https://git.ryujinx.app/user/login

Riedler commented on 2025-11-24 17:19 (UTC) (edited on 2025-11-24 17:21 (UTC) by Riedler)

please set the dotnet sdk and runtime dependencies to >=10

username227 commented on 2025-11-12 00:34 (UTC)

If you get a dotnet error, install dotnet-sdk-preview-bin from the AUR until the repo catches up to dotnet 10.

bbaster commented on 2025-02-12 20:07 (UTC)

Thank you, I have removed all dependencies that weren't required by any package (that list included .NET 8.0) and now it's building

username227 commented on 2025-02-11 23:51 (UTC)

I cannot reproduce. I just successfully built in a chroot, which would seem to take out the obvious suspect of missing dependencies.

First, try clearing the yay cache and rebuilding. If that doesn't work, try building the package using paru in a chroot:

paru -S ryujinx-git --chroot

and let me know if it builds in a chroot. If it does, then there may be something on your system interfering with the build. Let me know. thanks.

bbaster commented on 2025-02-11 23:42 (UTC)

Having trouble building:

    /home/user/.cache/yay/ryujinx-git/src/Ryujinx/src/Ryujinx/Ryujinx.csproj : error NU1101: Unable to find package Microsoft.NETCore.App.Host.arch-x64. No packages exist with this id in source(s): nuget.org

Restore failed with 1 error(s) in 16.9s

xAsh commented on 2025-02-02 20:08 (UTC)

That's what I did locally too, but would be cool if it was on the AUR as well ;)

MonkeeSage commented on 2025-02-02 07:52 (UTC)

@xAsh: worked fine for me with the packaged 9.0 sdk and runtime from extra.

diff --git a/PKGBUILD b/PKGBUILD
index 7a76738..44c399f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -22,11 +22,11 @@ arch=('x86_64')
 depends=(
   'gcc-libs'
   'zlib'
-  'dotnet-runtime-8.0-bin'
+  'dotnet-runtime'
 )
 makedepends=(
   'desktop-file-utils'
-  'dotnet-sdk-bin' # aur/dotnet-core-bin
+  'dotnet-sdk'
   'git'
 )

xAsh commented on 2025-01-25 17:45 (UTC)

Possible to change the PKGBUILD in order to use extra/dotnet-sdk, instead of dotnet-sdk-bin from the AUR? Since they now both provide the same 9.0.1.sdk102 version.