blob: 1f643c5194af332a8f26dc62ee4134d05f2cbd7f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
{ stdenv, lib, perl, pkgs, steam-runtime
, nativeOnly ? false
, runtimeOnly ? false
, newStdcpp ? false
}:
assert !(nativeOnly && runtimeOnly);
assert newStdcpp -> !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
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
udev182
networkmanager098
# Verified games requirements
xlibs.libXmu
xlibs.libxcb
xlibs.libpciaccess
mesa_glu
libuuid
libogg
libvorbis
SDL
SDL2_image
glew110
openssl
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
gst_plugins_base
] ++ lib.optional (!newStdcpp) gcc48.cc;
overridePkgs = with pkgs; [
libgpgerror
libpulseaudio
alsaLib
openalSoft
libva
] ++ lib.optional newStdcpp gcc.cc;
ourRuntime = if runtimeOnly then []
else if nativeOnly then runtimePkgs ++ overridePkgs
else overridePkgs;
steamRuntime = lib.optional (!nativeOnly) steam-runtime;
allPkgs = ourRuntime ++ steamRuntime;
in stdenv.mkDerivation rec {
name = "steam-runtime-wrapped";
nativeBuildInputs = [ perl ];
builder = ./build-wrapped.sh;
installPhase = ''
buildDir "${toString steam-runtime.libs}" "${toString (map lib.getLib allPkgs)}"
buildDir "${toString steam-runtime.bins}" "${toString (map lib.getBin allPkgs)}"
'';
meta.hydraPlatforms = [];
}
|