about summary refs log tree commit diff
path: root/pkgs/applications/editors/vscode
diff options
context:
space:
mode:
authorBill Ewanick <bill@ewanick.com>2022-07-26 18:02:37 -0400
committerBill Ewanick <bill@ewanick.com>2022-07-26 18:02:37 -0400
commitbad8f550a7362cb72f4bd4dea09d2386f4ef632b (patch)
tree408178f08adac00712fa0baeca40d5d01025267e /pkgs/applications/editors/vscode
parentf26b767ef0776c081b5e642bc3ddb7959772781f (diff)
downloadnixlib-bad8f550a7362cb72f4bd4dea09d2386f4ef632b.tar
nixlib-bad8f550a7362cb72f4bd4dea09d2386f4ef632b.tar.gz
nixlib-bad8f550a7362cb72f4bd4dea09d2386f4ef632b.tar.bz2
nixlib-bad8f550a7362cb72f4bd4dea09d2386f4ef632b.tar.lz
nixlib-bad8f550a7362cb72f4bd4dea09d2386f4ef632b.tar.xz
nixlib-bad8f550a7362cb72f4bd4dea09d2386f4ef632b.tar.zst
nixlib-bad8f550a7362cb72f4bd4dea09d2386f4ef632b.zip
vscode: 1.69.1 -> 1.69.2
Diffstat (limited to 'pkgs/applications/editors/vscode')
-rw-r--r--pkgs/applications/editors/vscode/vscode.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/applications/editors/vscode/vscode.nix b/pkgs/applications/editors/vscode/vscode.nix
index 9514390c0d85..ae5847569509 100644
--- a/pkgs/applications/editors/vscode/vscode.nix
+++ b/pkgs/applications/editors/vscode/vscode.nix
@@ -2,6 +2,7 @@
 
 let
   inherit (stdenv.hostPlatform) system;
+  throwSystem = throw "Unsupported system: ${system}";
 
   plat = {
     x86_64-linux = "linux-x64";
@@ -9,22 +10,22 @@ let
     aarch64-linux = "linux-arm64";
     aarch64-darwin = "darwin-arm64";
     armv7l-linux = "linux-armhf";
-  }.${system};
+  }.${system} or throwSystem;
 
   archive_fmt = if stdenv.isDarwin then "zip" else "tar.gz";
 
   sha256 = {
-    x86_64-linux = "0jixjbj1h9l0zrkb8sc3p4x7kjh87dramaz6j8369vv6mc4h8ymr";
-    x86_64-darwin = "1lqxjzyzhr3dpvjpmmlvknaxjzryr6yz8rg1mh5p211wfi13rf1c";
-    aarch64-linux = "0y4q1kpwhz0hyipsc7hah6xgz9p3sn0ysaqzw32dl91hkr6d52mf";
-    aarch64-darwin = "1d89gr4aj0vl05rz9d5iv8kkgb8p5jbfc9b0hjj1cp0d276x6ipy";
-    armv7l-linux = "11cawg3ql9iq9z56i68h26cz7ydg0az298cbs2kpsz2lzkw97wbd";
-  }.${system};
+    x86_64-linux = "0djz1gi605f0xwrn2b5f0cvvcdmhh1n00rfcqxp1j1fa4y69lyzq";
+    x86_64-darwin = "1n51f0fb6h8kpsn8g0bcp4nav0ilin26c5xp1qhs63hnnif045pn";
+    aarch64-linux = "1zjg18f38h682mibws6n4hwa01jkv5dpj45jw17dmk7wgw4gylww";
+    aarch64-darwin = "10crlbcpn90498nszillryvr0w2w46ra6g7nbkqkkgzav692nfys";
+    armv7l-linux = "1iwp0fax56l23dllfd4p7p4k28bk6msfknq9dagxqhg4i9p2yrq2";
+  }.${system} or throwSystem;
 in
   callPackage ./generic.nix rec {
     # Please backport all compatible updates to the stable release.
     # This is important for the extension ecosystem.
-    version = "1.69.1";
+    version = "1.69.2";
     pname = "vscode";
 
     executableName = "code" + lib.optionalString isInsiders "-insiders";