2016-01-26 21:45:21 +00:00
|
|
|
{ pkgs, newScope }:
|
2013-09-13 22:58:59 +01:00
|
|
|
|
2015-08-23 16:17:15 +01:00
|
|
|
let
|
|
|
|
callPackage = newScope self;
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2015-08-23 16:17:15 +01:00
|
|
|
self = rec {
|
2017-10-16 00:58:04 +01:00
|
|
|
steamArch = if pkgs.stdenv.system == "x86_64-linux" then "amd64"
|
|
|
|
else if pkgs.stdenv.system == "i686-linux" then "i386"
|
|
|
|
else abort "Unsupported platform";
|
|
|
|
|
2015-08-23 16:17:15 +01:00
|
|
|
steam-runtime = callPackage ./runtime.nix { };
|
2016-01-26 21:45:21 +00:00
|
|
|
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
|
2015-08-23 16:17:15 +01:00
|
|
|
steam = callPackage ./steam.nix { };
|
2015-10-15 13:17:13 +01:00
|
|
|
steam-fonts = callPackage ./fonts.nix { };
|
2016-04-03 02:19:00 +01:00
|
|
|
steam-chrootenv = callPackage ./chrootenv.nix {
|
2017-10-16 00:58:04 +01:00
|
|
|
steam-runtime-wrapped-i686 =
|
|
|
|
if steamArch == "amd64"
|
|
|
|
then pkgs.pkgsi686Linux.steamPackages.steam-runtime-wrapped
|
2016-04-03 02:19:00 +01:00
|
|
|
else null;
|
|
|
|
};
|
2013-09-13 22:58:59 +01:00
|
|
|
};
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2015-08-23 16:17:15 +01:00
|
|
|
in self
|