summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix
diff options
context:
space:
mode:
authorJoscha <joscha@plugh.de>2022-05-18 23:14:01 +0200
committerYt <raphael@megzari.com>2022-05-21 05:04:10 -0400
commit4d6a40140c81af39bde9ca971dbb54570aa427f0 (patch)
tree9e9940a8a3ca64b3b09336f0fce020ccdecaa3cc /pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix
parent8bc78621d3cdd1016e6db5cd1ed13dde0b4dcd90 (diff)
downloadnixpkgs-4d6a40140c81af39bde9ca971dbb54570aa427f0.tar
nixpkgs-4d6a40140c81af39bde9ca971dbb54570aa427f0.tar.gz
nixpkgs-4d6a40140c81af39bde9ca971dbb54570aa427f0.tar.bz2
nixpkgs-4d6a40140c81af39bde9ca971dbb54570aa427f0.tar.lz
nixpkgs-4d6a40140c81af39bde9ca971dbb54570aa427f0.tar.xz
nixpkgs-4d6a40140c81af39bde9ca971dbb54570aa427f0.tar.zst
nixpkgs-4d6a40140c81af39bde9ca971dbb54570aa427f0.zip
vscode-extensions.rust-lang.rust-analyzer: 0.2.1048 -> 0.3.1059
This update changes the extension's publisher from "matklad" to
"rust-lang" and moves it to `vscode-extensions.rust-lang.rust-analyzer`,
but keeps `vscode-extensions.matklad.rust-analyzer` for backwards
compatibility. It also bumps the version number from 0.2.xxx to 0.3.xxx,
as described in changelog #129.5:
https://rust-analyzer.github.io/thisweek/2022/05/17/changelog-129-5.html
Diffstat (limited to 'pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix')
-rw-r--r--pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix b/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix
index 00cb5712ec7..7e9dca1ffa0 100644
--- a/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix
+++ b/pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix
@@ -15,18 +15,18 @@
 
 let
   pname = "rust-analyzer";
-  publisher = "matklad";
+  publisher = "rust-lang";
 
   # Use the plugin version as in vscode marketplace, updated by update script.
   inherit (vsix) version;
 
-  releaseTag = "2022-03-07";
+  releaseTag = "2022-05-17";
 
   src = fetchFromGitHub {
     owner = "rust-lang";
     repo = "rust-analyzer";
     rev = releaseTag;
-    sha256 = "sha256-/qKh4utesAjlyG8A3hEmSx+HBgh48Uje6ZRtUGz5f0g=";
+    sha256 = "sha256-vrVpgQYUuJPgK1NMb1nxlCdxjoYo40YkUbZpH2Z2mwM=";
   };
 
   build-deps = nodePackages."rust-analyzer-build-deps-../../applications/editors/vscode/extensions/rust-analyzer/build-deps";