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

in self