2016-04-03 02:19:00 +01:00
|
|
|
{ stdenv, lib, writeScript, buildFHSUserEnv, steam
|
|
|
|
, steam-runtime, steam-runtime-i686 ? null
|
2016-01-26 21:45:21 +00:00
|
|
|
, withJava ? false
|
2015-08-23 16:17:15 +01:00
|
|
|
, withPrimus ? false
|
2016-01-26 21:45:21 +00:00
|
|
|
, nativeOnly ? false
|
|
|
|
, runtimeOnly ? false
|
|
|
|
, newStdcpp ? false
|
2015-07-28 11:42:11 +01:00
|
|
|
}:
|
2013-09-13 22:58:59 +01:00
|
|
|
|
2016-04-03 02:19:00 +01:00
|
|
|
let
|
|
|
|
self = {
|
|
|
|
name = "steam";
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2016-04-03 02:19:00 +01:00
|
|
|
targetPkgs = pkgs: with pkgs; [
|
2015-08-23 16:17:15 +01:00
|
|
|
steamPackages.steam
|
2015-10-15 13:17:28 +01:00
|
|
|
steamPackages.steam-fonts
|
2015-11-12 13:32:09 +00:00
|
|
|
# License agreement
|
|
|
|
gnome3.zenity
|
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
|
2015-10-15 12:52:43 +01:00
|
|
|
# Needed by gdialog, including in the steam-runtime
|
2015-08-06 19:21:43 +01:00
|
|
|
perl
|
2016-04-03 02:19:00 +01:00
|
|
|
] ++ lib.optional withJava jdk
|
|
|
|
++ lib.optional withPrimus (primus.override {
|
|
|
|
stdenv = overrideInStdenv stdenv [ useOldCXXAbi ];
|
|
|
|
stdenv_i686 = overrideInStdenv pkgsi686Linux.stdenv [ useOldCXXAbi ];
|
|
|
|
});
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2016-04-03 02:19:00 +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
|
|
|
|
2016-01-26 21:45:21 +00:00
|
|
|
(steamPackages.steam-runtime-wrapped.override {
|
|
|
|
inherit nativeOnly runtimeOnly newStdcpp;
|
|
|
|
})
|
2014-07-10 09:25:19 +01:00
|
|
|
];
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2016-04-03 02:19:00 +01:00
|
|
|
extraBuildCommands = ''
|
|
|
|
mkdir -p steamrt
|
|
|
|
ln -s ../lib/steam-runtime steamrt/${steam-runtime.arch}
|
|
|
|
${lib.optionalString (steam-runtime-i686 != null) ''
|
|
|
|
ln -s ../lib32/steam-runtime steamrt/${steam-runtime-i686.arch}
|
|
|
|
''}
|
|
|
|
'';
|
2015-08-06 19:21:43 +01:00
|
|
|
|
2016-04-03 02:19:00 +01: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
|
|
|
|
'';
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2016-04-03 02:19:00 +01:00
|
|
|
profile = ''
|
|
|
|
export STEAM_RUNTIME=/steamrt
|
|
|
|
'';
|
2015-12-03 21:57:54 +00:00
|
|
|
|
2016-04-03 02:19:00 +01:00
|
|
|
runScript = "steam";
|
2015-02-05 15:16:02 +00:00
|
|
|
|
2016-04-03 02:19:00 +01:00
|
|
|
passthru.run = buildFHSUserEnv (self // {
|
|
|
|
name = "steam-run";
|
|
|
|
|
|
|
|
runScript =
|
|
|
|
let ldPath = map (x: "/steamrt/${steam-runtime.arch}/" + x) steam-runtime.libs
|
|
|
|
++ lib.optionals (steam-runtime-i686 != null) (map (x: "/steamrt/${steam-runtime-i686.arch}/" + x) steam-runtime-i686.libs);
|
|
|
|
in writeScript "steam-run" ''
|
|
|
|
#!${stdenv.shell}
|
|
|
|
run="$1"
|
|
|
|
if [ "$run" = "" ]; then
|
|
|
|
echo "Usage: steam-run command-to-run args..." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shift
|
|
|
|
export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH
|
|
|
|
exec "$run" "$@"
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {};
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
in buildFHSUserEnv self
|