summary refs log tree commit diff
path: root/pkgs/games/steam/default.nix
blob: 5aab54b8322102efd5ef7c88bcf1c07ead08dfee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ pkgs, newScope }:

let
  callPackage = newScope self;

  self = rec {
    steamArch = if pkgs.stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
                else if pkgs.stdenv.hostPlatform.system == "i686-linux" then "i386"
                else throw "Unsupported platform: ${pkgs.stdenv.hostPlatform.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;
    };
    steamcmd = callPackage ./steamcmd.nix { };
  };

in self