Skip to content

Commit 355c672

Browse files
committed
nix: trivial readability refactor
1 parent ee17363 commit 355c672

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

nix/checks.nix

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -126,19 +126,19 @@
126126
checks = checks // {
127127
quick = pkgs.symlinkJoin {
128128
name = "quick-checks-${rev}";
129-
paths = [
130-
checks.tests-nightly-dev
131-
checks.clippy
129+
paths = with checks; [
130+
tests-nightly-dev
131+
clippy
132132
];
133133
};
134134
lint = pkgs.symlinkJoin {
135135
name = "lint-checks-${rev}";
136-
paths = [
137-
checks.cargo-sort
138-
checks.clippy
139-
checks.doc
140-
checks.unused-lints
141-
checks.no-todo-comments
136+
paths = with checks; [
137+
cargo-sort
138+
clippy
139+
doc
140+
unused-lints
141+
no-todo-comments
142142
];
143143
};
144144
nightly = pkgs.symlinkJoin {

0 commit comments

Comments
 (0)