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

let
  callPackage = newScope self;

  self = rec {
    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 {
      steam-runtime-i686 =
        if pkgs.system == "x86_64-linux"
        then pkgs.pkgsi686Linux.steamPackages.steam-runtime
        else null;
    };
  };

in self