nixpkgs/pkgs/games/steam/chrootenv.nix

55 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, buildFHSUserEnv
, withJava ? false
, withPrimus ? false
}:
2015-02-05 15:16:02 +00:00
buildFHSUserEnv {
name = "steam";
2014-04-22 23:03:14 +00:00
targetPkgs = pkgs: with pkgs; [
steamPackages.steam
2015-10-15 12:17:28 +00:00
steamPackages.steam-fonts
# Errors in output without those
pciutils
python2
# Games' dependencies
xlibs.xrandr
which
2015-10-15 11:52:43 +00:00
# Needed by gdialog, including in the steam-runtime
perl
2014-06-15 13:34:27 +00:00
]
++ lib.optional withJava jdk
++ lib.optional withPrimus primus
2014-06-15 13:34:27 +00:00
;
2014-04-22 23:03:14 +00:00
multiPkgs = pkgs: with pkgs; [
# These are required by steam with proper errors
xlibs.libXcomposite
xlibs.libXtst
xlibs.libXrandr
xlibs.libXext
xlibs.libX11
xlibs.libXfixes
# Not formally in runtime but needed by some games
gst_all_1.gstreamer
gst_all_1.gst-plugins-ugly
2015-09-08 17:40:58 +00:00
libdrm
2014-04-22 23:03:14 +00:00
steamPackages.steam-runtime-wrapped
2014-07-10 08:25:19 +00:00
];
2014-04-22 23:03:14 +00:00
2015-07-28 10:55:47 +00:00
extraBuildCommands = ''
mkdir -p steamrt
ln -s ../lib64/steam-runtime steamrt/amd64
ln -s ../lib32/steam-runtime steamrt/i386
2014-04-22 23:03:14 +00:00
'';
profile = ''
export STEAM_RUNTIME=/steamrt
'';
2015-02-05 15:16:02 +00:00
2015-04-22 13:52:57 +00:00
runScript = "steam";
}