tattoy: prepare for structuredAttrs
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user