2020-07-31 12:52:12 +00:00
|
|
|
{ pkgs, newScope, buildFHSUserEnv }:
|
2013-09-13 21:58:59 +00:00
|
|
|
|
2015-08-23 15:17:15 +00:00
|
|
|
let
|
|
|
|
callPackage = newScope self;
|
2014-04-22 23:03:14 +00:00
|
|
|
|
2015-08-23 15:17:15 +00:00
|
|
|
self = rec {
|
2018-08-20 19:11:29 +00:00
|
|
|
steamArch = if pkgs.stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
|
|
|
|
else if pkgs.stdenv.hostPlatform.system == "i686-linux" then "i386"
|
|
|
|
else throw "Unsupported platform: ${pkgs.stdenv.hostPlatform.system}";
|
2017-10-15 23:58:04 +00:00
|
|
|
|
2015-08-23 15:17:15 +00:00
|
|
|
steam-runtime = callPackage ./runtime.nix { };
|
2016-01-26 21:45:21 +00:00
|
|
|
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
|
2015-08-23 15:17:15 +00:00
|
|
|
steam = callPackage ./steam.nix { };
|
2015-10-15 12:17:13 +00:00
|
|
|
steam-fonts = callPackage ./fonts.nix { };
|
2020-07-31 12:52:12 +00:00
|
|
|
steam-fhsenv = callPackage ./fhsenv.nix {
|
2018-03-15 23:37:42 +00:00
|
|
|
glxinfo-i686 = pkgs.pkgsi686Linux.glxinfo;
|
2017-10-15 23:58:04 +00:00
|
|
|
steam-runtime-wrapped-i686 =
|
|
|
|
if steamArch == "amd64"
|
|
|
|
then pkgs.pkgsi686Linux.steamPackages.steam-runtime-wrapped
|
2016-04-03 01:19:00 +00:00
|
|
|
else null;
|
2020-07-31 12:52:12 +00:00
|
|
|
inherit buildFHSUserEnv;
|
2016-04-03 01:19:00 +00:00
|
|
|
};
|
2018-04-12 22:32:14 +00:00
|
|
|
steamcmd = callPackage ./steamcmd.nix { };
|
2013-09-13 21:58:59 +00:00
|
|
|
};
|
2014-04-22 23:03:14 +00:00
|
|
|
|
2015-08-23 15:17:15 +00:00
|
|
|
in self
|