summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode
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
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')
-rw-r--r--pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json5
-rw-r--r--pkgs/applications/editors/vscode/extensions/rust-analyzer/default.nix6
2 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json b/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json
index 5ccc6f2fa41..48592e9e6dd 100644
--- a/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json
+++ b/pkgs/applications/editors/vscode/extensions/rust-analyzer/build-deps/package.json
@@ -1,15 +1,16 @@
 {
   "name": "rust-analyzer",
-  "version": "0.2.1048",
+  "version": "0.3.1059",
   "dependencies": {
-    "vscode-languageclient": "8.0.0-next.14",
     "d3": "^7.3.0",
     "d3-graphviz": "^4.1.0",
+    "vscode-languageclient": "8.0.0-next.14",
     "@types/node": "~14.17.5",
     "@types/vscode": "~1.66.0",
     "@typescript-eslint/eslint-plugin": "^5.16.0",
     "@typescript-eslint/parser": "^5.16.0",
     "@vscode/test-electron": "^2.1.3",
+    "cross-env": "^7.0.3",
     "eslint": "^8.11.0",
     "tslib": "^2.3.0",
     "typescript": "^4.6.3",
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";