2023-08-14 01:49:53 +02:00
|
|
|
{ makeScopeWithSplicing', generateSplicesForMkScope
|
2023-04-22 22:53:39 +02:00
|
|
|
, stdenv, buildFHSEnv, pkgsi686Linux, glxinfo
|
2021-10-10 23:58:22 +02:00
|
|
|
}:
|
2013-09-13 23:58:59 +02:00
|
|
|
|
2015-08-23 17:17:15 +02:00
|
|
|
let
|
2021-10-10 23:58:22 +02:00
|
|
|
steamPackagesFun = self: let
|
|
|
|
inherit (self) callPackage;
|
2023-02-18 16:02:35 +01:00
|
|
|
in rec {
|
2021-10-10 23:58:22 +02:00
|
|
|
steamArch = if stdenv.hostPlatform.system == "x86_64-linux" then "amd64"
|
|
|
|
else if stdenv.hostPlatform.system == "i686-linux" then "i386"
|
|
|
|
else throw "Unsupported platform: ${stdenv.hostPlatform.system}";
|
2017-10-16 01:58:04 +02:00
|
|
|
|
2015-08-23 17:17:15 +02:00
|
|
|
steam-runtime = callPackage ./runtime.nix { };
|
2016-01-26 22:45:21 +01:00
|
|
|
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
|
2015-08-23 17:17:15 +02:00
|
|
|
steam = callPackage ./steam.nix { };
|
2020-07-31 14:52:12 +02:00
|
|
|
steam-fhsenv = callPackage ./fhsenv.nix {
|
2023-04-22 22:53:39 +02:00
|
|
|
glxinfo-i686 =
|
|
|
|
if self.steamArch == "amd64"
|
|
|
|
then pkgsi686Linux.glxinfo
|
|
|
|
else glxinfo;
|
2017-10-16 01:58:04 +02:00
|
|
|
steam-runtime-wrapped-i686 =
|
2021-10-10 23:58:22 +02:00
|
|
|
if self.steamArch == "amd64"
|
2022-12-24 16:44:09 +01:00
|
|
|
then pkgsi686Linux.steamPackages.steam-runtime-wrapped
|
2016-04-03 03:19:00 +02:00
|
|
|
else null;
|
2023-04-11 12:52:27 +02:00
|
|
|
inherit buildFHSEnv;
|
2016-04-03 03:19:00 +02:00
|
|
|
};
|
2023-02-18 16:02:35 +01:00
|
|
|
steam-fhsenv-small = steam-fhsenv.override { withGameSpecificLibraries = false; };
|
2023-05-16 20:31:19 +02:00
|
|
|
|
|
|
|
# This has to exist so Hydra tries to build all of Steam's dependencies.
|
|
|
|
# FIXME: Maybe we should expose it as something more generic?
|
|
|
|
steam-fhsenv-without-steam = steam-fhsenv.override { steam = null; };
|
|
|
|
|
2018-04-13 00:32:14 +02:00
|
|
|
steamcmd = callPackage ./steamcmd.nix { };
|
2013-09-13 23:58:59 +02:00
|
|
|
};
|
2023-08-14 01:49:53 +02:00
|
|
|
in makeScopeWithSplicing' {
|
|
|
|
otherSplices = generateSplicesForMkScope "steamPackages";
|
|
|
|
f = steamPackagesFun;
|
|
|
|
}
|