diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-07-25 18:10:34 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-07-26 18:27:52 +0200 |
commit | fcb04843f7619d767c3c865e4795fb3468653e28 (patch) | |
tree | 29e4741955338aaf8cd32ee4175ae42194b2803c /shell.nix | |
parent | 5fb858424793de8dc35dce8deaa8981a384e064f (diff) | |
download | garage-fcb04843f7619d767c3c865e4795fb3468653e28.tar.gz garage-fcb04843f7619d767c3c865e4795fb3468653e28.zip |
Run clippy in nix, leveraging nix caching ability
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -29,16 +29,16 @@ function refresh_toolchain { ''; nativeBuildInputs = [ - pkgs.rustPlatform.rust.rustc + #pkgs.rustPlatform.rust.rustc pkgs.rustPlatform.rust.cargo - pkgs.clippy + #pkgs.clippy pkgs.rustfmt - pkgs.perl - pkgs.protobuf - pkgs.pkg-config - pkgs.openssl + #pkgs.perl + #pkgs.protobuf + #pkgs.pkg-config + #pkgs.openssl pkgs.file - cargo2nix.packages.x86_64-linux.cargo2nix + #cargo2nix.packages.x86_64-linux.cargo2nix ]; }; |