2018-03-15 23:37:42 +00:00
|
|
|
{ stdenv, lib, writeScript, buildFHSUserEnv, steam, glxinfo-i686
|
2017-10-16 00:58:04 +01:00
|
|
|
, steam-runtime-wrapped, steam-runtime-wrapped-i686 ? null
|
2016-01-26 21:45:21 +00:00
|
|
|
, withJava ? false
|
2015-08-23 16:17:15 +01:00
|
|
|
, withPrimus ? false
|
2017-05-28 19:04:25 +01:00
|
|
|
, extraPkgs ? pkgs: [ ] # extra packages to add to targetPkgs
|
2018-06-03 22:49:27 +01:00
|
|
|
, extraProfile ? "" # string to append to profile
|
2016-01-26 21:45:21 +00:00
|
|
|
, nativeOnly ? false
|
|
|
|
, runtimeOnly ? 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
|
2016-07-11 16:07:55 +01:00
|
|
|
commonTargetPkgs = pkgs: with pkgs;
|
2018-02-14 11:01:57 +00:00
|
|
|
[
|
2016-07-11 16:07:55 +01:00
|
|
|
steamPackages.steam-fonts
|
|
|
|
# Errors in output without those
|
|
|
|
pciutils
|
|
|
|
python2
|
|
|
|
# Games' dependencies
|
2018-03-13 10:16:03 +00:00
|
|
|
xorg.xrandr
|
2016-07-11 16:07:55 +01:00
|
|
|
which
|
|
|
|
# Needed by gdialog, including in the steam-runtime
|
|
|
|
perl
|
|
|
|
# Open URLs
|
|
|
|
xdg_utils
|
2017-11-10 12:34:34 +00:00
|
|
|
iana-etc
|
2018-08-31 11:43:08 +01:00
|
|
|
# Steam Play / Proton
|
|
|
|
python3
|
2016-07-11 16:07:55 +01:00
|
|
|
] ++ lib.optional withJava jdk
|
2017-09-10 09:54:06 +01:00
|
|
|
++ lib.optional withPrimus primus
|
2017-05-28 19:04:25 +01:00
|
|
|
++ extraPkgs pkgs;
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2017-11-11 12:51:12 +00:00
|
|
|
ldPath = map (x: "/steamrt/${steam-runtime-wrapped.arch}/" + x) steam-runtime-wrapped.libs
|
|
|
|
++ lib.optionals (steam-runtime-wrapped-i686 != null) (map (x: "/steamrt/${steam-runtime-wrapped-i686.arch}/" + x) steam-runtime-wrapped-i686.libs);
|
|
|
|
|
|
|
|
runSh = writeScript "run.sh" ''
|
|
|
|
#!${stdenv.shell}
|
|
|
|
runtime_paths="${lib.concatStringsSep ":" ldPath}"
|
|
|
|
if [ "$1" == "--print-steam-runtime-library-paths" ]; then
|
|
|
|
echo "$runtime_paths"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH="$runtime_paths:$LD_LIBRARY_PATH"
|
|
|
|
exec "$@"
|
|
|
|
'';
|
|
|
|
|
2016-05-26 12:33:18 +01:00
|
|
|
in buildFHSUserEnv rec {
|
|
|
|
name = "steam";
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2016-05-26 12:33:18 +01:00
|
|
|
targetPkgs = pkgs: with pkgs; [
|
|
|
|
steamPackages.steam
|
|
|
|
# License agreement
|
|
|
|
gnome3.zenity
|
2016-07-11 16:07:55 +01:00
|
|
|
] ++ commonTargetPkgs pkgs;
|
2015-08-06 19:21:43 +01:00
|
|
|
|
2016-05-26 12:33:18 +01:00
|
|
|
multiPkgs = pkgs: with pkgs; [
|
|
|
|
# These are required by steam with proper errors
|
2018-03-13 10:16:03 +00:00
|
|
|
xorg.libXcomposite
|
|
|
|
xorg.libXtst
|
|
|
|
xorg.libXrandr
|
|
|
|
xorg.libXext
|
|
|
|
xorg.libX11
|
|
|
|
xorg.libXfixes
|
2018-03-19 09:36:10 +00:00
|
|
|
libGL
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2016-05-26 12:33:18 +01:00
|
|
|
# Not formally in runtime but needed by some games
|
|
|
|
gst_all_1.gstreamer
|
|
|
|
gst_all_1.gst-plugins-ugly
|
|
|
|
libdrm
|
2016-09-11 16:17:57 +01:00
|
|
|
mono
|
2016-10-25 14:11:00 +01:00
|
|
|
xorg.xkeyboardconfig
|
2018-03-13 10:16:03 +00:00
|
|
|
xorg.libpciaccess
|
2018-03-15 23:37:42 +00:00
|
|
|
] ++ (if (!nativeOnly) then [
|
2016-05-26 12:33:18 +01:00
|
|
|
(steamPackages.steam-runtime-wrapped.override {
|
2018-03-15 23:37:42 +00:00
|
|
|
inherit runtimeOnly;
|
2016-05-26 12:33:18 +01:00
|
|
|
})
|
2018-03-15 23:37:42 +00:00
|
|
|
] else [
|
|
|
|
# Required
|
|
|
|
glib
|
|
|
|
gtk2
|
|
|
|
bzip2
|
|
|
|
zlib
|
|
|
|
gdk_pixbuf
|
|
|
|
|
|
|
|
# Without these it silently fails
|
|
|
|
xorg.libXinerama
|
|
|
|
xorg.libXdamage
|
|
|
|
xorg.libXcursor
|
|
|
|
xorg.libXrender
|
|
|
|
xorg.libXScrnSaver
|
|
|
|
xorg.libXxf86vm
|
|
|
|
xorg.libXi
|
|
|
|
xorg.libSM
|
|
|
|
xorg.libICE
|
|
|
|
gnome2.GConf
|
|
|
|
freetype
|
|
|
|
(curl.override { gnutlsSupport = true; sslSupport = false; })
|
|
|
|
nspr
|
|
|
|
nss
|
|
|
|
fontconfig
|
|
|
|
cairo
|
|
|
|
pango
|
|
|
|
expat
|
|
|
|
dbus
|
|
|
|
cups
|
|
|
|
libcap
|
|
|
|
SDL2
|
|
|
|
libusb1
|
|
|
|
dbus-glib
|
|
|
|
libav
|
|
|
|
atk
|
|
|
|
# Only libraries are needed from those two
|
|
|
|
libudev0-shim
|
|
|
|
networkmanager098
|
|
|
|
|
|
|
|
# Verified games requirements
|
2018-03-20 19:06:14 +00:00
|
|
|
xorg.libXt
|
2018-03-15 23:37:42 +00:00
|
|
|
xorg.libXmu
|
|
|
|
xorg.libxcb
|
|
|
|
libGLU
|
|
|
|
libuuid
|
|
|
|
libogg
|
|
|
|
libvorbis
|
|
|
|
SDL
|
|
|
|
SDL2_image
|
|
|
|
glew110
|
|
|
|
openssl
|
|
|
|
libidn
|
|
|
|
tbb
|
2018-03-20 19:06:14 +00:00
|
|
|
wayland
|
|
|
|
mesa_noglu
|
|
|
|
libxkbcommon
|
2018-03-15 23:37:42 +00:00
|
|
|
|
|
|
|
# Other things from runtime
|
|
|
|
flac
|
|
|
|
freeglut
|
|
|
|
libjpeg
|
|
|
|
libpng12
|
|
|
|
libsamplerate
|
|
|
|
libmikmod
|
|
|
|
libtheora
|
|
|
|
libtiff
|
|
|
|
pixman
|
|
|
|
speex
|
|
|
|
SDL_image
|
|
|
|
SDL_ttf
|
|
|
|
SDL_mixer
|
|
|
|
SDL2_ttf
|
|
|
|
SDL2_mixer
|
|
|
|
gstreamer
|
|
|
|
gst-plugins-base
|
|
|
|
libappindicator-gtk2
|
|
|
|
libcaca
|
|
|
|
libcanberra
|
|
|
|
libgcrypt
|
|
|
|
libvpx
|
|
|
|
librsvg
|
|
|
|
xorg.libXft
|
|
|
|
libvdpau
|
|
|
|
] ++ steamPackages.steam-runtime-wrapped.overridePkgs);
|
|
|
|
|
|
|
|
extraBuildCommands = if (!nativeOnly) then ''
|
2016-05-26 12:33:18 +01:00
|
|
|
mkdir -p steamrt
|
2017-10-16 00:58:04 +01:00
|
|
|
ln -s ../lib/steam-runtime steamrt/${steam-runtime-wrapped.arch}
|
|
|
|
${lib.optionalString (steam-runtime-wrapped-i686 != null) ''
|
|
|
|
ln -s ../lib32/steam-runtime steamrt/${steam-runtime-wrapped-i686.arch}
|
2016-05-26 12:33:18 +01:00
|
|
|
''}
|
2017-11-11 12:51:12 +00:00
|
|
|
ln -s ${runSh} steamrt/run.sh
|
2018-03-15 23:37:42 +00:00
|
|
|
'' else ''
|
|
|
|
ln -s /usr/lib/libbz2.so usr/lib/libbz2.so.1.0
|
|
|
|
${lib.optionalString (steam-runtime-wrapped-i686 != null) ''
|
|
|
|
ln -s /usr/lib32/libbz2.so usr/lib32/libbz2.so.1.0
|
|
|
|
''}
|
2016-05-26 12:33:18 +01:00
|
|
|
'';
|
2014-04-23 00:03:14 +01:00
|
|
|
|
2016-05-26 12:33:18 +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
|
|
|
|
'';
|
2015-12-03 21:57:54 +00:00
|
|
|
|
2016-05-26 12:33:18 +01:00
|
|
|
profile = ''
|
2018-11-10 03:17:04 +00:00
|
|
|
# Workaround for issue #44254 (Steam cannot connect to friends network)
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/44254
|
|
|
|
if [ -z ''${TZ+x} ]; then
|
|
|
|
new_TZ="$(readlink -f /etc/localtime | grep -P -o '(?<=/zoneinfo/).*$')"
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
export TZ="$new_TZ"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-03-15 23:37:42 +00:00
|
|
|
export STEAM_RUNTIME=${if nativeOnly then "0" else "/steamrt"}
|
2018-06-03 22:49:27 +01:00
|
|
|
'' + extraProfile;
|
2015-02-05 15:16:02 +00:00
|
|
|
|
2017-12-30 20:06:09 +00:00
|
|
|
runScript = writeScript "steam-wrapper.sh" ''
|
|
|
|
#!${stdenv.shell}
|
2017-12-31 10:43:21 +00:00
|
|
|
if [ -f /host/etc/NIXOS ]; then # Check only useful on NixOS
|
2018-03-15 23:37:42 +00:00
|
|
|
${glxinfo-i686}/bin/glxinfo >/dev/null 2>&1
|
2017-12-31 10:43:21 +00:00
|
|
|
# If there was an error running glxinfo, we know something is wrong with the configuration
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
cat <<EOF > /dev/stderr
|
|
|
|
**
|
|
|
|
WARNING: Steam is not set up. Add the following options to /etc/nixos/configuration.nix
|
|
|
|
and then run \`sudo nixos-rebuild switch\`:
|
|
|
|
{
|
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
hardware.pulseaudio.support32Bit = true;
|
|
|
|
}
|
|
|
|
**
|
|
|
|
EOF
|
|
|
|
fi
|
2017-12-30 20:06:09 +00:00
|
|
|
fi
|
2018-03-15 23:37:42 +00:00
|
|
|
exec steam "$@"
|
2017-12-30 20:06:09 +00:00
|
|
|
'';
|
2016-04-03 02:19:00 +01:00
|
|
|
|
2018-03-15 23:37:42 +00:00
|
|
|
meta = steam.meta // {
|
|
|
|
broken = nativeOnly;
|
|
|
|
};
|
|
|
|
|
2016-05-26 12:33:18 +01:00
|
|
|
passthru.run = buildFHSUserEnv {
|
|
|
|
name = "steam-run";
|
2016-04-03 02:19:00 +01:00
|
|
|
|
2016-05-26 12:33:18 +01:00
|
|
|
targetPkgs = commonTargetPkgs;
|
|
|
|
inherit multiPkgs extraBuildCommands;
|
2016-04-03 02:19:00 +01:00
|
|
|
|
2017-11-11 12:51:12 +00:00
|
|
|
runScript = writeScript "steam-run" ''
|
|
|
|
#!${stdenv.shell}
|
|
|
|
run="$1"
|
|
|
|
if [ "$run" = "" ]; then
|
|
|
|
echo "Usage: steam-run command-to-run args..." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shift
|
2018-03-15 23:37:42 +00:00
|
|
|
${lib.optionalString (!nativeOnly) "export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH"}
|
|
|
|
exec -- "$run" "$@"
|
2017-11-11 12:51:12 +00:00
|
|
|
'';
|
2016-05-26 12:33:18 +01:00
|
|
|
};
|
|
|
|
}
|