nixpkgs/pkgs/games/steam/chrootenv.nix

69 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, buildFHSUserEnv, steam
, withJava ? false
, withPrimus ? false
, nativeOnly ? false
, runtimeOnly ? false
, newStdcpp ? false
}:
2015-02-05 16:16:02 +01:00
buildFHSUserEnv {
name = "steam";
2014-04-23 01:03:14 +02:00
targetPkgs = pkgs: with pkgs; [
steamPackages.steam
2015-10-15 14:17:28 +02:00
steamPackages.steam-fonts
2015-11-12 14:32:09 +01:00
# License agreement
gnome3.zenity
# Errors in output without those
pciutils
python2
# Games' dependencies
xlibs.xrandr
which
2015-10-15 13:52:43 +02:00
# Needed by gdialog, including in the steam-runtime
perl
2014-06-15 15:34:27 +02:00
]
++ lib.optional withJava jdk
++ lib.optional withPrimus primus
2014-06-15 15:34:27 +02:00
;
2014-04-23 01:03:14 +02: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 19:40:58 +02:00
libdrm
2014-04-23 01:03:14 +02:00
(steamPackages.steam-runtime-wrapped.override {
inherit nativeOnly runtimeOnly newStdcpp;
})
2014-07-10 10:25:19 +02:00
];
2014-04-23 01:03:14 +02:00
2015-07-28 12:55:47 +02:00
extraBuildCommands = ''
mkdir -p steamrt
ln -s ../lib64/steam-runtime steamrt/amd64
ln -s ../lib32/steam-runtime steamrt/i386
2014-04-23 01:03:14 +02:00
'';
extraInstallCommands = ''
mkdir -p $out/share/applications
ln -s ${steam}/share/icons $out/share
ln -s ${steam}/share/pixmaps $out/share
sed "s,/usr/bin/steam,$out/bin/steam,g" ${steam}/share/applications/steam.desktop > $out/share/applications/steam.desktop
'';
profile = ''
export STEAM_RUNTIME=/steamrt
'';
2015-02-05 16:16:02 +01:00
2015-04-22 15:52:57 +02:00
runScript = "steam";
}