summary refs log tree commit diff
path: root/pkgs/games/steam/default.nix
blob: 64f8cfe2c2872e5cce1af8470118fa3ac611f368 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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-chrootenv = callPackage ./chrootenv.nix { };
    steam-fonts = callPackage ./fonts.nix { };
  };

in self