tattoy: prepare for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-01-28 07:20:51 +01:00
parent 5eab66d92c
commit f51883e6df
+14 -8
View File
@@ -40,16 +40,22 @@ rustPlatform.buildRustPackage (attrs: {
watch
];
checkFlags = [
# e2e tests currently fail
# see https://github.com/tattoy-org/tattoy/pull/104/files for discussion
# re-enable after PR merged
"--skip e2e"
"--skip gpu"
];
useNextest = true;
checkFlags =
lib.concatMap
(t: [
"--skip"
"${t}"
])
[
# e2e tests currently fail
# see https://github.com/tattoy-org/tattoy/pull/104/files for discussion
# re-enable after PR merged
"e2e"
"gpu"
];
meta = {
description = "Text-based compositor for modern terminals";
homepage = "https://github.com/tattoy-org/tattoy";