forked from fufexan/nix-gaming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupportFlags.nix
52 lines (51 loc) · 1.16 KB
/
supportFlags.nix
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
rec {
base = {
gettextSupport = true;
fontconfigSupport = true;
alsaSupport = true;
openglSupport = true;
vulkanSupport = true;
tlsSupport = true;
cupsSupport = true;
dbusSupport = true;
cairoSupport = true;
cursesSupport = true;
saneSupport = true;
pulseaudioSupport = true;
udevSupport = true;
xineramaSupport = true;
sdlSupport = true;
mingwSupport = true;
gtkSupport = false;
gstreamerSupport = false;
openalSupport = false;
openclSupport = false;
odbcSupport = false;
netapiSupport = false;
vaSupport = false;
pcapSupport = false;
v4lSupport = false;
gphoto2Support = false;
krb5Support = false;
embedInstallers = false;
x11Support = true;
waylandSupport = false;
usbSupport = true;
};
full =
base
// {
gtkSupport = true;
gstreamerSupport = true;
openalSupport = true;
openclSupport = true;
odbcSupport = true;
netapiSupport = true;
vaSupport = true;
pcapSupport = true;
v4lSupport = true;
gphoto2Support = true;
embedInstallers = true;
waylandSupport = true;
};
}