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