blob: 6491da28afd3e720f3f26d7833a66c2a529a64c7 (
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
|
package libdrm {
description = "a userspace library for accessing the DRM";
website = "https://dri.freedesktop.org";
anitya = 1596;
version# = "2.4.134";
source = remoteGitLab {
domain = "gitlab.freedesktop.org";
suffix = "mesa/libdrm";
ref = "libdrm-"+version;
checksum = "L81a0vjK3RBWDwLHPkyTvy-us37ICD_hD2GcIb5s8Lx_OhVWxqdElzeMCgzQ4yiK";
};
exec = meson {
setup = {
"intel": "enabled";
};
};
tools = [
// symbols check fail with llvm nm
binutils,
];
inputs = [
libpciaccess,
kernel-headers,
];
}
|