2016-01-15 11:54:01 +00:00
|
|
|
{ stdenv, lib, perl, pkgs, steam-runtime
|
2015-08-23 15:17:15 +00:00
|
|
|
, nativeOnly ? false
|
|
|
|
, runtimeOnly ? false
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert !(nativeOnly && runtimeOnly);
|
|
|
|
|
|
|
|
let
|
|
|
|
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
|
|
|
|
curl
|
|
|
|
nspr
|
|
|
|
nss
|
|
|
|
fontconfig
|
|
|
|
cairo
|
|
|
|
pango
|
|
|
|
expat
|
|
|
|
dbus
|
|
|
|
cups
|
|
|
|
libcap
|
|
|
|
SDL2
|
|
|
|
libusb1
|
|
|
|
dbus_glib
|
|
|
|
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
|
|
|
|
|
|
|
|
# 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
|
|
|
|
];
|
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;
|
|
|
|
|
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
|
|
|
|
|
|
|
installPhase = ''
|
2016-05-14 23:35:08 +00:00
|
|
|
buildDir "${toString steam-runtime.libs}" "${toString (map lib.getLib allPkgs)}"
|
|
|
|
buildDir "${toString steam-runtime.bins}" "${toString (map lib.getBin allPkgs)}"
|
2015-08-23 15:17:15 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta.hydraPlatforms = [];
|
|
|
|
}
|