Use direct shellcheck package name in input args of shell.nix

This commit is contained in:
Marcin Kulik
2025-10-13 15:46:32 +02:00
parent 83be3e5ad7
commit 98956c6517

View File

@@ -1,6 +1,6 @@
{ {
defaultPackage, defaultPackage,
pkgs, shellcheck,
packageToml, packageToml,
rust-bin, rust-bin,
mkShell, mkShell,
@@ -22,7 +22,7 @@ let
}) })
]; ];
packages = [ pkgs.shellcheck ]; packages = [ shellcheck ];
env.RUST_BACKTRACE = 1; env.RUST_BACKTRACE = 1;
}; };