summary refs log tree commit diff
path: root/pkgs/development/tools/rust/rust-analyzer/generic.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/rust/rust-analyzer/generic.nix')
-rw-r--r--pkgs/development/tools/rust/rust-analyzer/generic.nix11
1 files changed, 2 insertions, 9 deletions
diff --git a/pkgs/development/tools/rust/rust-analyzer/generic.nix b/pkgs/development/tools/rust/rust-analyzer/generic.nix
index b25f74b90f6..ca72f91953c 100644
--- a/pkgs/development/tools/rust/rust-analyzer/generic.nix
+++ b/pkgs/development/tools/rust/rust-analyzer/generic.nix
@@ -16,16 +16,9 @@ rustPlatform.buildRustPackage {
     inherit rev sha256;
   };
 
-  # FIXME: Temporary fixes for our rust 1.45.0
-  cargoPatches = [
-    ./downgrade-smol_str.patch # Requires rustc 1.46.0
-  ];
-
+  # FIXME: Temporary fixes for our rust 1.46.0
   patches = [
-    ./no-track_env_var.patch              # Requires rustc 1.47.0
-    ./no-match-unsizing-in-const-fn.patch # Requires rustc 1.46.0
-    ./no-loop-in-const-fn.patch           # Requires rustc 1.46.0
-    ./no-option-zip.patch                 # Requires rustc 1.46.0
+    ./no-track_env_var.patch # Requires rustc 1.47.0
   ];
 
   buildAndTestSubdir = "crates/rust-analyzer";