2017-10-15 23:58:04 +00:00
|
|
|
{ stdenv, steamArch, lib, perl, pkgs, steam-runtime
|
2015-08-23 15:17:15 +00:00
|
|
|
, nativeOnly ? false
|
|
|
|
, runtimeOnly ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert !(nativeOnly && runtimeOnly);
|
|
|
|
|
2017-12-18 00:19:23 +00:00
|
|
|
let
|
2015-08-23 15:17:15 +00:00
|
|
|
runtimePkgs = with pkgs; [
|
|
|
|
# Required
|
|
|
|
glib
|
|
|
|
gtk2
|
|
|
|
bzip2
|
|
|
|
zlib
|
|
|
|
gdk_pixbuf
|
|
|
|
|
|
|
|
# Without these it silently fails
|
|
|
|
xlibs.libXinerama
|
|
|
|
xlibs.libXdamage
|
|
|
|
xlibs.libXcursor
|
|
|
|
xlibs.libXrender
|
|
|
|
xlibs.libXScrnSaver
|
2016-09-27 22:27:49 +00:00
|
|
|
xlibs.libXxf86vm
|
2015-08-23 15:17:15 +00:00
|
|
|
xlibs.libXi
|
|
|
|
xlibs.libSM
|
|
|
|
xlibs.libICE
|
|
|
|
gnome2.GConf
|
|
|
|
freetype
|
2017-10-28 09:18:26 +00:00
|
|
|
(curl.override { gnutlsSupport = true; sslSupport = false; })
|
2015-08-23 15:17:15 +00:00
|
|
|
nspr
|
|
|
|
nss
|
|
|
|
fontconfig
|
|
|
|
cairo
|
|
|
|
pango
|
|
|
|
expat
|
|
|
|
dbus
|
|
|
|
cups
|
|
|
|
libcap
|
|
|
|
SDL2
|
|
|
|
libusb1
|
2018-02-25 02:23:58 +00:00
|
|
|
dbus-glib
|
2015-08-23 15:17:15 +00:00
|
|
|
libav
|
|
|
|
atk
|
|
|
|
# Only libraries are needed from those two
|
2016-12-28 15:51:01 +00:00
|
|
|
libudev0-shim
|
2015-08-23 15:17:15 +00:00
|
|
|
networkmanager098
|
|
|
|
|
|
|
|
# Verified games requirements
|
|
|
|
xlibs.libXmu
|
|
|
|
xlibs.libxcb
|
|
|
|
mesa_glu
|
|
|
|
libuuid
|
|
|
|
libogg
|
|
|
|
libvorbis
|
|
|
|
SDL
|
|
|
|
SDL2_image
|
|
|
|
glew110
|
2017-02-21 01:45:48 +00:00
|
|
|
openssl
|
2015-08-23 15:17:15 +00:00
|
|
|
libidn
|
2017-10-28 22:48:47 +00:00
|
|
|
tbb
|
2015-08-23 15:17:15 +00:00
|
|
|
|
|
|
|
# Other things from runtime
|
|
|
|
xlibs.libXinerama
|
|
|
|
flac
|
|
|
|
freeglut
|
|
|
|
libjpeg
|
|
|
|
libpng12
|
|
|
|
libsamplerate
|
|
|
|
libmikmod
|
|
|
|
libtheora
|
|
|
|
pixman
|
|
|
|
speex
|
|
|
|
SDL_image
|
|
|
|
SDL_ttf
|
|
|
|
SDL_mixer
|
|
|
|
SDL2_net
|
|
|
|
SDL2_ttf
|
|
|
|
SDL2_mixer
|
|
|
|
gstreamer
|
2017-02-26 20:25:29 +00:00
|
|
|
gst-plugins-base
|
2017-09-10 08:54:06 +00:00
|
|
|
];
|
2015-08-23 15:17:15 +00:00
|
|
|
|
|
|
|
overridePkgs = with pkgs; [
|
2016-05-14 23:35:08 +00:00
|
|
|
libgpgerror
|
2015-08-23 15:17:15 +00:00
|
|
|
libpulseaudio
|
|
|
|
alsaLib
|
|
|
|
openalSoft
|
2016-03-28 22:14:27 +00:00
|
|
|
libva
|
2017-03-19 18:19:45 +00:00
|
|
|
vulkan-loader
|
2017-09-10 08:54:06 +00:00
|
|
|
gcc.cc
|
2017-12-18 00:19:23 +00:00
|
|
|
nss
|
|
|
|
nspr
|
2017-09-10 08:54:06 +00:00
|
|
|
];
|
2015-08-23 15:17:15 +00:00
|
|
|
|
|
|
|
ourRuntime = if runtimeOnly then []
|
|
|
|
else if nativeOnly then runtimePkgs ++ overridePkgs
|
|
|
|
else overridePkgs;
|
2016-01-15 11:54:01 +00:00
|
|
|
steamRuntime = lib.optional (!nativeOnly) steam-runtime;
|
2015-08-23 15:17:15 +00:00
|
|
|
|
2016-05-14 23:35:08 +00:00
|
|
|
allPkgs = ourRuntime ++ steamRuntime;
|
|
|
|
|
2017-10-15 23:58:04 +00:00
|
|
|
gnuArch = if steamArch == "amd64" then "x86_64-linux-gnu"
|
|
|
|
else if steamArch == "i386" then "i386-linux-gnu"
|
|
|
|
else abort "Unsupported architecture";
|
|
|
|
|
|
|
|
libs = [ "lib/${gnuArch}" "lib" "usr/lib/${gnuArch}" "usr/lib" ];
|
|
|
|
bins = [ "bin" "usr/bin" ];
|
|
|
|
|
2015-08-23 15:17:15 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "steam-runtime-wrapped";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
2015-10-20 14:08:44 +00:00
|
|
|
builder = ./build-wrapped.sh;
|
2015-08-23 15:17:15 +00:00
|
|
|
|
2017-10-15 23:58:04 +00:00
|
|
|
passthru = {
|
|
|
|
inherit gnuArch libs bins;
|
|
|
|
arch = steamArch;
|
|
|
|
};
|
|
|
|
|
2015-08-23 15:17:15 +00:00
|
|
|
installPhase = ''
|
2017-10-15 23:58:04 +00:00
|
|
|
buildDir "${toString libs}" "${toString (map lib.getLib allPkgs)}"
|
|
|
|
buildDir "${toString bins}" "${toString (map lib.getBin allPkgs)}"
|
2015-08-23 15:17:15 +00:00
|
|
|
'';
|
|
|
|
}
|