blob: a9e88eb96eb0713197113c6526a00e091977b2dc (
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
|
package seatd {
description = "seat management daemon and library";
website = "https://sr.ht/~kennylevinsen/seatd";
anitya = 234932;
version# = "0.9.3";
source = remoteTar {
url = "https://git.sr.ht/~kennylevinsen/seatd/archive/"+version+".tar.gz";
checksum = "nKib7dZgUPJFr1EOF0OYElhzpFdgFPJiroAb3TScAJIAlr4p2NV1ZdS6erNA7Jwi";
compress = gzip;
};
env = [
// ../../usr/src/seatd/common/connection.c:154:55
"CFLAGS=-Wno-sign-compare",
];
exec = meson {
setup = {
"libseat-logind": "disabled";
"libseat-seatd": "enabled";
"libseat-builtin": "enabled";
};
};
inputs = [ kernel-headers ];
}
|