new repos

This commit is contained in:
2026-03-20 10:25:48 +01:00
parent a0773c3c54
commit 90de455035
35 changed files with 612 additions and 9 deletions

View File

@@ -10,7 +10,17 @@ url = "https://repo.steampowered.com/steam/archive/stable/steam_${version}.tar.g
sha256 = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
[dependencies]
run = ["glibc", "curl", "dbus", "freetype", "openssl", "nvidia-open"]
# Steam is an X11 app running under XWayland — needs full X11 stack
# Also needs fonts, audio (PipeWire + pipewire-pulse for PulseAudio compat)
# 64-bit native deps
run = ["glibc", "curl", "dbus", "freetype", "openssl", "nvidia-open",
"libx11", "libxext", "libxrender", "libxfixes", "libxcomposite",
"libxdamage", "libxi", "libxtst", "libxcursor", "libxrandr",
"pipewire", "alsa-lib", "fontconfig", "liberation-fonts",
# 32-bit multilib — Steam runtime and many Proton games need 32-bit libs
"lib32-glibc", "lib32-zlib", "lib32-openssl", "lib32-curl",
"lib32-dbus", "lib32-freetype", "lib32-fontconfig", "lib32-alsa-lib",
"lib32-libx11", "lib32-libxcb", "lib32-mesa", "lib32-nvidia"]
build = ["make"]
[build]