9c8137ca81
* Update dependencies using steam-native-runtime from Arch Linux as a reference. * Remove native-only Steam Runtime, just use installed libraries instead. * Mark native-only Steam as broken (due to segfault inside D-Bus). Seems it was already broken for a long time. Doesn't apply to steam-run. * Some cleanups for chrootenv.
25 lines
769 B
Nix
25 lines
769 B
Nix
{ pkgs, newScope }:
|
|
|
|
let
|
|
callPackage = newScope self;
|
|
|
|
self = rec {
|
|
steamArch = if pkgs.stdenv.system == "x86_64-linux" then "amd64"
|
|
else if pkgs.stdenv.system == "i686-linux" then "i386"
|
|
else throw "Unsupported platform: ${pkgs.stdenv.system}";
|
|
|
|
steam-runtime = callPackage ./runtime.nix { };
|
|
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
|
|
steam = callPackage ./steam.nix { };
|
|
steam-fonts = callPackage ./fonts.nix { };
|
|
steam-chrootenv = callPackage ./chrootenv.nix {
|
|
glxinfo-i686 = pkgs.pkgsi686Linux.glxinfo;
|
|
steam-runtime-wrapped-i686 =
|
|
if steamArch == "amd64"
|
|
then pkgs.pkgsi686Linux.steamPackages.steam-runtime-wrapped
|
|
else null;
|
|
};
|
|
};
|
|
|
|
in self
|