2019-06-16 19:59:06 +00:00
|
|
|
{ config, lib, writeScript, buildFHSUserEnv, steam, glxinfo-i686
|
2017-10-15 23:58:04 +00:00
|
|
|
, steam-runtime-wrapped, steam-runtime-wrapped-i686 ? null
|
2017-05-28 18:04:25 +00:00
|
|
|
, extraPkgs ? pkgs: [ ] # extra packages to add to targetPkgs
|
2018-10-14 23:38:19 +00:00
|
|
|
, extraLibraries ? pkgs: [ ] # extra packages to add to multiPkgs
|
2018-06-03 21:49:27 +00:00
|
|
|
, extraProfile ? "" # string to append to profile
|
2016-01-26 21:45:21 +00:00
|
|
|
, nativeOnly ? false
|
|
|
|
, runtimeOnly ? false
|
2019-02-26 11:45:54 +00:00
|
|
|
, runtimeShell
|
2019-02-03 15:33:30 +00:00
|
|
|
|
|
|
|
# DEPRECATED
|
|
|
|
, withJava ? config.steam.java or false
|
|
|
|
, withPrimus ? config.steam.primus or false
|
2015-07-28 10:42:11 +00:00
|
|
|
}:
|
2013-09-13 21:58:59 +00:00
|
|
|
|
2016-04-03 01:19:00 +00:00
|
|
|
let
|
2016-07-11 15:07:55 +00:00
|
|
|
commonTargetPkgs = pkgs: with pkgs;
|
2018-02-14 11:01:57 +00:00
|
|
|
[
|
2016-07-11 15:07:55 +00:00
|
|
|
steamPackages.steam-fonts
|
2019-08-02 21:49:46 +00:00
|
|
|
# Needed for operating system detection until
|
|
|
|
# https://github.com/ValveSoftware/steam-for-linux/issues/5909 is resolved
|
|
|
|
lsb-release
|
2016-07-11 15:07:55 +00:00
|
|
|
# Errors in output without those
|
|
|
|
pciutils
|
|
|
|
python2
|
|
|
|
# Games' dependencies
|
2018-03-13 10:16:03 +00:00
|
|
|
xorg.xrandr
|
2016-07-11 15:07:55 +00: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 10:43:08 +00:00
|
|
|
# Steam Play / Proton
|
|
|
|
python3
|
2019-02-03 20:01:42 +00:00
|
|
|
# Steam VR
|
|
|
|
procps
|
|
|
|
usbutils
|
2020-12-09 02:04:49 +00:00
|
|
|
|
|
|
|
# electron based launchers need newer versions of these libraries than what runtime provides
|
|
|
|
mesa
|
|
|
|
sqlite
|
2020-09-19 13:29:19 +00:00
|
|
|
] ++ lib.optional withJava jdk8 # TODO: upgrade https://github.com/NixOS/nixpkgs/pull/89731
|
2017-09-10 08:54:06 +00:00
|
|
|
++ lib.optional withPrimus primus
|
2017-05-28 18:04:25 +00:00
|
|
|
++ extraPkgs pkgs;
|
2014-04-22 23:03:14 +00: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);
|
|
|
|
|
2020-07-30 23:51:38 +00:00
|
|
|
# Zachtronics and a few other studios expect STEAM_LD_LIBRARY_PATH to be present
|
|
|
|
exportLDPath = ''
|
2020-09-12 03:19:31 +00:00
|
|
|
export LD_LIBRARY_PATH=/lib32:/lib64:${lib.concatStringsSep ":" ldPath}''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
|
2020-07-30 23:51:38 +00:00
|
|
|
export STEAM_LD_LIBRARY_PATH="$STEAM_LD_LIBRARY_PATH''${STEAM_LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
|
|
|
|
'';
|
|
|
|
|
2019-04-16 02:13:05 +00:00
|
|
|
setupSh = writeScript "setup.sh" ''
|
|
|
|
#!${runtimeShell}
|
|
|
|
'';
|
|
|
|
|
2017-11-11 12:51:12 +00:00
|
|
|
runSh = writeScript "run.sh" ''
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2019-07-14 00:43:12 +00:00
|
|
|
runtime_paths="/lib32:/lib64:${lib.concatStringsSep ":" ldPath}"
|
2017-11-11 12:51:12 +00:00
|
|
|
if [ "$1" == "--print-steam-runtime-library-paths" ]; then
|
|
|
|
echo "$runtime_paths"
|
|
|
|
exit 0
|
|
|
|
fi
|
2020-01-02 00:29:34 +00:00
|
|
|
export LD_LIBRARY_PATH="$runtime_paths''${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
|
2020-07-30 23:51:38 +00:00
|
|
|
export STEAM_LD_LIBRARY_PATH="$STEAM_LD_LIBRARY_PATH''${STEAM_LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
|
2017-11-11 12:51:12 +00:00
|
|
|
exec "$@"
|
|
|
|
'';
|
|
|
|
|
2016-05-26 11:33:18 +00:00
|
|
|
in buildFHSUserEnv rec {
|
|
|
|
name = "steam";
|
2014-04-22 23:03:14 +00:00
|
|
|
|
2016-05-26 11:33:18 +00:00
|
|
|
targetPkgs = pkgs: with pkgs; [
|
|
|
|
steamPackages.steam
|
|
|
|
# License agreement
|
|
|
|
gnome3.zenity
|
2016-07-11 15:07:55 +00:00
|
|
|
] ++ commonTargetPkgs pkgs;
|
2015-08-06 18:21:43 +00:00
|
|
|
|
2016-05-26 11:33:18 +00: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
|
2020-01-22 17:58:10 +00:00
|
|
|
libva
|
2014-04-22 23:03:14 +00:00
|
|
|
|
2016-05-26 11:33:18 +00:00
|
|
|
# Not formally in runtime but needed by some games
|
2019-10-19 23:29:37 +00:00
|
|
|
at-spi2-atk
|
2019-12-30 06:25:54 +00:00
|
|
|
at-spi2-core # CrossCode
|
2016-05-26 11:33:18 +00:00
|
|
|
gst_all_1.gstreamer
|
|
|
|
gst_all_1.gst-plugins-ugly
|
2020-09-02 00:21:42 +00:00
|
|
|
gst_all_1.gst-plugins-base
|
2016-05-26 11:33:18 +00:00
|
|
|
libdrm
|
2016-09-11 15:17:57 +00:00
|
|
|
mono
|
2016-10-25 13:11:00 +00:00
|
|
|
xorg.xkeyboardconfig
|
2018-03-13 10:16:03 +00:00
|
|
|
xorg.libpciaccess
|
2020-02-25 02:24:21 +00:00
|
|
|
udev # shadow of the tomb raider
|
|
|
|
|
2019-07-14 19:19:09 +00:00
|
|
|
## screeps dependencies
|
2019-10-31 12:13:14 +00:00
|
|
|
gtk3
|
2019-07-14 19:19:09 +00:00
|
|
|
dbus
|
|
|
|
zlib
|
|
|
|
glib
|
|
|
|
atk
|
|
|
|
cairo
|
|
|
|
freetype
|
2019-10-31 12:13:14 +00:00
|
|
|
gdk-pixbuf
|
2019-07-14 19:19:09 +00:00
|
|
|
pango
|
|
|
|
fontconfig
|
2020-02-15 18:00:33 +00:00
|
|
|
|
|
|
|
# friends options won't display "Launch Game" without it
|
|
|
|
lsof
|
2020-02-16 23:49:51 +00:00
|
|
|
|
|
|
|
# called by steam's setup.sh
|
|
|
|
file
|
2020-03-09 20:46:04 +00:00
|
|
|
|
|
|
|
# Prison Architect
|
|
|
|
libGLU
|
|
|
|
libuuid
|
|
|
|
libbsd
|
|
|
|
alsaLib
|
2018-03-15 23:37:42 +00:00
|
|
|
] ++ (if (!nativeOnly) then [
|
2016-05-26 11:33:18 +00:00
|
|
|
(steamPackages.steam-runtime-wrapped.override {
|
2018-03-15 23:37:42 +00:00
|
|
|
inherit runtimeOnly;
|
2016-05-26 11:33:18 +00:00
|
|
|
})
|
2018-03-15 23:37:42 +00:00
|
|
|
] else [
|
|
|
|
# Required
|
|
|
|
glib
|
|
|
|
gtk2
|
|
|
|
bzip2
|
|
|
|
zlib
|
2019-05-22 11:03:39 +00:00
|
|
|
gdk-pixbuf
|
2018-03-15 23:37:42 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
libogg
|
|
|
|
libvorbis
|
|
|
|
SDL
|
|
|
|
SDL2_image
|
|
|
|
glew110
|
|
|
|
openssl
|
|
|
|
libidn
|
|
|
|
tbb
|
2018-03-20 19:06:14 +00:00
|
|
|
wayland
|
|
|
|
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
|
|
|
|
libappindicator-gtk2
|
|
|
|
libcaca
|
|
|
|
libcanberra
|
|
|
|
libgcrypt
|
|
|
|
libvpx
|
|
|
|
librsvg
|
|
|
|
xorg.libXft
|
|
|
|
libvdpau
|
2018-10-14 23:38:19 +00:00
|
|
|
] ++ steamPackages.steam-runtime-wrapped.overridePkgs) ++ extraLibraries pkgs;
|
2018-03-15 23:37:42 +00:00
|
|
|
|
|
|
|
extraBuildCommands = if (!nativeOnly) then ''
|
2016-05-26 11:33:18 +00:00
|
|
|
mkdir -p steamrt
|
2017-10-15 23:58:04 +00: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 11:33:18 +00:00
|
|
|
''}
|
2017-11-11 12:51:12 +00:00
|
|
|
ln -s ${runSh} steamrt/run.sh
|
2019-04-16 02:13:05 +00:00
|
|
|
ln -s ${setupSh} steamrt/setup.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 11:33:18 +00:00
|
|
|
'';
|
2014-04-22 23:03:14 +00:00
|
|
|
|
2016-05-26 11:33:18 +00:00
|
|
|
extraInstallCommands = ''
|
|
|
|
mkdir -p $out/share/applications
|
|
|
|
ln -s ${steam}/share/icons $out/share
|
|
|
|
ln -s ${steam}/share/pixmaps $out/share
|
2020-10-27 15:12:02 +00:00
|
|
|
sed "s,/usr/bin/steam,steam,g" ${steam}/share/applications/steam.desktop > $out/share/applications/steam.desktop
|
2016-05-26 11:33:18 +00:00
|
|
|
'';
|
2015-12-03 21:57:54 +00:00
|
|
|
|
2016-05-26 11:33:18 +00: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 21:49:27 +00:00
|
|
|
'' + extraProfile;
|
2015-02-05 15:16:02 +00:00
|
|
|
|
2017-12-30 20:06:09 +00:00
|
|
|
runScript = writeScript "steam-wrapper.sh" ''
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
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\`:
|
2019-02-26 11:45:54 +00:00
|
|
|
{
|
2017-12-31 10:43:21 +00:00
|
|
|
hardware.opengl.driSupport32Bit = true;
|
|
|
|
hardware.pulseaudio.support32Bit = true;
|
|
|
|
}
|
|
|
|
**
|
|
|
|
EOF
|
|
|
|
fi
|
2017-12-30 20:06:09 +00:00
|
|
|
fi
|
2020-07-30 23:51:38 +00:00
|
|
|
${lib.optionalString (!nativeOnly) exportLDPath}
|
2018-03-15 23:37:42 +00:00
|
|
|
exec steam "$@"
|
2017-12-30 20:06:09 +00:00
|
|
|
'';
|
2016-04-03 01:19:00 +00:00
|
|
|
|
2018-03-15 23:37:42 +00:00
|
|
|
meta = steam.meta // {
|
|
|
|
broken = nativeOnly;
|
|
|
|
};
|
|
|
|
|
2020-12-09 02:42:56 +00:00
|
|
|
# allows for some gui applications to share IPC
|
|
|
|
# this fixes certain issues where they don't render correctly
|
|
|
|
unshareIpc = false;
|
|
|
|
|
2016-05-26 11:33:18 +00:00
|
|
|
passthru.run = buildFHSUserEnv {
|
|
|
|
name = "steam-run";
|
2016-04-03 01:19:00 +00:00
|
|
|
|
2016-05-26 11:33:18 +00:00
|
|
|
targetPkgs = commonTargetPkgs;
|
|
|
|
inherit multiPkgs extraBuildCommands;
|
2016-04-03 01:19:00 +00:00
|
|
|
|
2017-11-11 12:51:12 +00:00
|
|
|
runScript = writeScript "steam-run" ''
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2017-11-11 12:51:12 +00:00
|
|
|
run="$1"
|
|
|
|
if [ "$run" = "" ]; then
|
|
|
|
echo "Usage: steam-run command-to-run args..." >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
shift
|
2020-07-30 23:51:38 +00:00
|
|
|
${lib.optionalString (!nativeOnly) exportLDPath}
|
2018-03-15 23:37:42 +00:00
|
|
|
exec -- "$run" "$@"
|
2017-11-11 12:51:12 +00:00
|
|
|
'';
|
2016-05-26 11:33:18 +00:00
|
|
|
};
|
|
|
|
}
|