From fd5fa383fe79a0582100a26fa223a9099d5bac7e Mon Sep 17 00:00:00 2001 From: Winter Date: Fri, 17 Feb 2023 00:11:18 -0500 Subject: [PATCH] clippy: drop rustc from buildInputs This may have been required when the package was originally added [0], but it builds and runs just fine without it now. [0]: 682e6fafa427e592610d1cac406c038bb206c183 --- pkgs/development/compilers/rust/clippy.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/rust/clippy.nix b/pkgs/development/compilers/rust/clippy.nix index 8edec88a9192..e02a47ddac11 100644 --- a/pkgs/development/compilers/rust/clippy.nix +++ b/pkgs/development/compilers/rust/clippy.nix @@ -10,7 +10,7 @@ rustPlatform.buildRustPackage { # changes hash of vendor directory otherwise dontUpdateAutotoolsGnuConfigScripts = true; - buildInputs = [ rustc rustc.llvm ] ++ lib.optionals stdenv.isDarwin [ Security ]; + buildInputs = [ rustc.llvm ] ++ lib.optionals stdenv.isDarwin [ Security ]; # fixes: error: the option `Z` is only accepted on the nightly compiler RUSTC_BOOTSTRAP = 1;