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
|
package wlroots {
description = "a modular Wayland compositor library";
website = "https://gitlab.freedesktop.org/wlroots/wlroots";
anitya = 18357;
version# = "0.20.2";
source = remoteGitLab {
domain = "gitlab.freedesktop.org";
suffix = "wlroots/wlroots";
ref = version;
checksum = "TDDJLXJ83uZEu-81LZeDlM0f1wNxaFd4Xn2q1NlKhm7IAEHnZJQHSdLmJIC4As_e";
};
exec = meson {
setup = {
"xwayland": "enabled";
"allocators": "gbm";
"backends": "drm,libinput";
};
};
inputs = [
mesa,
libglvnd,
hwdata,
wayland,
xwayland,
libxcb-wm,
xkbcommon,
pixman,
seatd,
libinput,
libliftoff,
kernel-headers,
];
runtime = [
mesa,
libglvnd,
wayland,
libxcb-wm,
xkbcommon,
pixman,
seatd,
libinput,
libliftoff,
];
}
|