about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorJoscha <joscha@plugh.de>2022-05-23 12:07:35 +0200
committerYt <raphael@megzari.com>2022-05-26 08:44:07 -0400
commitec5c98e943162e4b96e6016c79150be51b6f9508 (patch)
tree363c97ba20fa7287c4020935543062690814a156 /pkgs/applications/editors
parentf81c763c1de3fc0d2f746b82891684e3c08c919a (diff)
vscode-extensions.rust-lang-rust-analyzer: update publisher
Since rust-analyzer's publisher on the VSCode marketplace was changed to
rust-lang, this makes the extension available under
vscode-extensions.rust-lang.rust-analyzer. I thought I already did this
in PR #173540, but apparently I forgot. This is backwards-compatible in
that the extension is still availabe at
vscode-extensions.matklad.rust-analyzer as well.
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/vscode/extensions/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/editors/vscode/extensions/default.nix b/pkgs/applications/editors/vscode/extensions/default.nix
index ac8ae6885625d..21c1187c4ad46 100644
--- a/pkgs/applications/editors/vscode/extensions/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/default.nix
@@ -1700,7 +1700,8 @@ let
         };
       };
 
-      matklad.rust-analyzer = callPackage ./rust-analyzer { };
+      rust-lang.rust-analyzer = callPackage ./rust-analyzer { };
+      matklad.rust-analyzer = self.rust-lang.rust-analyzer; # Previous publisher
 
       ocamllabs.ocaml-platform = buildVscodeMarketplaceExtension {
         meta = with lib; {