2016-01-26 13:45:21 -08:00
|
|
|
{ pkgs, newScope }:
|
2013-09-13 14:58:59 -07:00
|
|
|
|
2015-08-23 08:17:15 -07:00
|
|
|
let
|
|
|
|
callPackage = newScope self;
|
2014-04-22 16:03:14 -07:00
|
|
|
|
2015-08-23 08:17:15 -07:00
|
|
|
self = rec {
|
|
|
|
steam-runtime = callPackage ./runtime.nix { };
|
2016-01-26 13:45:21 -08:00
|
|
|
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
|
2015-08-23 08:17:15 -07:00
|
|
|
steam = callPackage ./steam.nix { };
|
|
|
|
steam-chrootenv = callPackage ./chrootenv.nix { };
|
2015-10-15 05:17:13 -07:00
|
|
|
steam-fonts = callPackage ./fonts.nix { };
|
2013-09-13 14:58:59 -07:00
|
|
|
};
|
2014-04-22 16:03:14 -07:00
|
|
|
|
2015-08-23 08:17:15 -07:00
|
|
|
in self
|