mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
a62d444697
A steam variant without game specific libraries to have a smaller footprint on systems where people don't need or want the full blown fhs.
29 lines
1.1 KiB
Nix
29 lines
1.1 KiB
Nix
{ makeScopeWithSplicing, generateSplicesForMkScope
|
|
, stdenv, buildFHSUserEnv, pkgsi686Linux
|
|
}:
|
|
|
|
let
|
|
steamPackagesFun = self: let
|
|
inherit (self) callPackage;
|
|
in rec {
|
|
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}";
|
|
|
|
steam-runtime = callPackage ./runtime.nix { };
|
|
steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { };
|
|
steam = callPackage ./steam.nix { };
|
|
steam-fhsenv = callPackage ./fhsenv.nix {
|
|
glxinfo-i686 = pkgsi686Linux.glxinfo;
|
|
steam-runtime-wrapped-i686 =
|
|
if self.steamArch == "amd64"
|
|
then pkgsi686Linux.steamPackages.steam-runtime-wrapped
|
|
else null;
|
|
inherit buildFHSUserEnv;
|
|
};
|
|
steam-fhsenv-small = steam-fhsenv.override { withGameSpecificLibraries = false; };
|
|
steamcmd = callPackage ./steamcmd.nix { };
|
|
};
|
|
keep = self: { };
|
|
extra = spliced0: { };
|
|
in makeScopeWithSplicing (generateSplicesForMkScope "steamPackages") keep extra steamPackagesFun
|