From 9c2e64516472f3dbf66dbad775ab1dba6f86baa3 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Tue, 2 Sep 2025 09:16:51 +0200 Subject: treewide: Remove `with pkgs;` This is an antipattern and makes grepping for specific packages harder. --- pkgs/by-name/ts/tskm/flake.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'pkgs/by-name/ts/tskm/flake.nix') diff --git a/pkgs/by-name/ts/tskm/flake.nix b/pkgs/by-name/ts/tskm/flake.nix index 583d4923..6217f942 100644 --- a/pkgs/by-name/ts/tskm/flake.nix +++ b/pkgs/by-name/ts/tskm/flake.nix @@ -23,13 +23,13 @@ pkgs.sqlite ]; - packages = with pkgs; [ - cargo - clippy - rustc - rustfmt + packages = [ + pkgs.cargo + pkgs.clippy + pkgs.rustc + pkgs.rustfmt - cargo-edit + pkgs.cargo-edit ]; }; }; -- cgit 1.4.1