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:58 -0400
committerBill Ewanick <bill@ewanick.com>2022-07-26 18:02:58 -0400
commit91a156d2c3d67b6d06d06f6ac51f6bee177008d9 (patch)
tree7263c2707295d83024b3ca5dd658dc5430a34587 /pkgs/applications/editors/vscode
parentbad8f550a7362cb72f4bd4dea09d2386f4ef632b (diff)
downloadnixlib-91a156d2c3d67b6d06d06f6ac51f6bee177008d9.tar
nixlib-91a156d2c3d67b6d06d06f6ac51f6bee177008d9.tar.gz
nixlib-91a156d2c3d67b6d06d06f6ac51f6bee177008d9.tar.bz2
nixlib-91a156d2c3d67b6d06d06f6ac51f6bee177008d9.tar.lz
nixlib-91a156d2c3d67b6d06d06f6ac51f6bee177008d9.tar.xz
nixlib-91a156d2c3d67b6d06d06f6ac51f6bee177008d9.tar.zst
nixlib-91a156d2c3d67b6d06d06f6ac51f6bee177008d9.zip
vscodium: 1.69.1 -> 1.69.2
Diffstat (limited to 'pkgs/applications/editors/vscode')
-rw-r--r--pkgs/applications/editors/vscode/vscodium.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix
index 11a1c5e37fc8..02a1e4f8ed81 100644
--- a/pkgs/applications/editors/vscode/vscodium.nix
+++ b/pkgs/applications/editors/vscode/vscodium.nix
@@ -2,6 +2,7 @@
 
 let
   inherit (stdenv.hostPlatform) system;
+  throwSystem = throw "Unsupported system: ${system}";
 
   plat = {
     x86_64-linux = "linux-x64";
@@ -9,17 +10,17 @@ 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 = "0nsqrhijx5ic467fk2d803x93yazjkybg9cwmkk2l343fdg86kyq";
-    x86_64-darwin = "0hxafssjjx4gvbqpra517ar8dik5hkrnzx54v89g8p6s7kzkp1j0";
-    aarch64-linux = "1sl3w17a0j4b6rgl3xkna34i24s5ig8fs8kh2ysigb34h2izjdwi";
-    aarch64-darwin = "08wqiplyb16s7nvhlik7307jm3jznq7g611bp01q12bkxfa3bpp8";
-    armv7l-linux = "0vzl70545dplvd7nkl5g8x7mninjv3bkdp6d2ww6g2hdbdx0hlhr";
-  }.${system};
+    x86_64-linux = "0kvmnayrwpz82jxhvi69r45nyq74v5qyx5nn8b6kz23ma02nm4y6";
+    x86_64-darwin = "0w6qbybzvpb886z1y5w7q36xy176f5hagzgqddzgwbzlv3lc9i9j";
+    aarch64-linux = "194bnz4rg6lpi1pcl3yknap2n1p9vyi86wd5rq4m0h8kmqg1i21w";
+    aarch64-darwin = "1vhb85zbpp399qxn7b7gdvsij174x5nzp84xw57kw9pzs5dkw12g";
+    armv7l-linux = "1cr3vqxl0h8a4mg920a90ykdvb3vzf8cyxls1w8m84k3b53m5qdi";
+  }.${system} or throwSystem;
 
   sourceRoot = if stdenv.isDarwin then "" else ".";
 in
@@ -28,7 +29,7 @@ in
 
     # 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 = "vscodium";
 
     executableName = "codium";