From 45e33f667243a8bd1debc0d8e581a7d4c9c3e145 Mon Sep 17 00:00:00 2001 From: figsoda Date: Mon, 24 Jul 2023 14:35:23 -0400 Subject: [PATCH] rustc: build rust-analyzer-proc-macro-srv It was incorrectly removed in https://github.com/NixOS/nixpkgs/pull/243283 --- pkgs/development/compilers/rust/rustc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index 934a57cf0628..53f7257ecfc5 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -75,7 +75,7 @@ in stdenv.mkDerivation rec { "--release-channel=stable" "--set=build.rustc=${rustc}/bin/rustc" "--set=build.cargo=${cargo}/bin/cargo" - "--tools=rustc" + "--tools=rustc,rust-analyzer-proc-macro-srv" "--enable-rpath" "--enable-vendor" "--build=${rust.toRustTargetSpec stdenv.buildPlatform}"