blob: a07d4d9401abc89826bb7071cff6439e26a4473c (
plain)
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
|
package xkbcommon {
description = "a library implementing the XKB specification for handling keyboard descriptions";
website = "https://xkbcommon.org";
anitya = 1780;
latest = anityaFallback;
version# = "1.13.2";
source = remoteGitHub {
suffix = "xkbcommon/libxkbcommon";
tag = "xkbcommon-"+version;
checksum = "0G094HbOwXkSaqZtp6jfyk2noJZI7j_Ohsw9L87AKO8gsv8EGGlPhuRG9hVCF9lT";
};
env = [
"HOME=/proc/nonexistent",
];
exec = meson {
setup = {
"enable-x11": "false";
};
};
inputs = [
m4,
bison,
libxml2,
wayland,
wayland-protocols,
xkeyboard-config,
];
runtime = [
libxml2,
wayland,
wayland-protocols,
xkeyboard-config,
];
}
|