From 80fd0aab7bcad6d1fe0b77865894b84036c13f95 Mon Sep 17 00:00:00 2001 From: jrawa Date: Thu, 16 Jul 2026 00:44:15 +0200 Subject: [PATCH 1/2] vscodium: 1.121.03429 -> 1.126.04524 --- pkgs/applications/editors/vscode/vscodium.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix index f78790955fcd..5a5ee6d5d342 100644 --- a/pkgs/applications/editors/vscode/vscodium.nix +++ b/pkgs/applications/editors/vscode/vscodium.nix @@ -17,7 +17,6 @@ let x86_64-linux = "linux-x64"; aarch64-linux = "linux-arm64"; aarch64-darwin = "darwin-arm64"; - armv7l-linux = "linux-armhf"; loongarch64-linux = "linux-loong64"; } .${system} or throwSystem; @@ -26,11 +25,10 @@ let hash = { - x86_64-linux = "sha256-LJsGc11MH6zlcJNfSWjTWPn2Jp9dkjeBPQuCXH1woUM="; - aarch64-linux = "sha256-mT5dvw8GOZ0GnZaKRS/TAzQDEEYDOgcj6w6lNLy5kQ0="; - aarch64-darwin = "sha256-c8K17XKpRG1ji2mUfoyg2+cRF+qc1KVMYVkaQoUIz7Y="; - armv7l-linux = "sha256-91ZHhEUDVoDiRBLwMHVLhzKmb9gWcPBUsVRZVLhCA4M="; - loongarch64-linux = "sha256-7iUdsIyJkIi40Xn+/PWdCVgahQxbZtiMw0QLMisN+sg="; + x86_64-linux = "sha256-rfNUjfBV0Y5HbN7oh0iLp0hrh5rZmjGlRsa1xf8pbCQ="; + aarch64-linux = "sha256-c9h9RtTcII/hLASX3GB6qwpuK/My9UoLaCajoaoyvDQ="; + aarch64-darwin = "sha256-8h7lJinrXjnAVdrqcBGLemBVxjmuzz2tBeGZeprYOsA="; + loongarch64-linux = "sha256-p8hwOg5BbVvJGeQoBrgtd4gHsYmwEhsF/I+bk8gzIo4="; } .${system} or throwSystem; @@ -41,8 +39,8 @@ buildVscode rec { # Please backport all compatible updates to the stable release. # This is important for the extension ecosystem. - version = "1.121.03429"; - vscodeVersion = "1.121.0"; + version = "1.126.04524"; + vscodeVersion = "1.126.0"; pname = "vscodium"; executableName = "codium"; @@ -88,7 +86,6 @@ buildVscode rec { "x86_64-linux" "aarch64-linux" "aarch64-darwin" - "armv7l-linux" "loongarch64-linux" ]; # requires libc.so.6 and other glibc specifics From f382dbba9c009e28e5eff1dd16a105ac96a64f10 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 19 Jul 2026 17:40:00 +0800 Subject: [PATCH 2/2] vscodium: Drop armv7l-linux and x86_64-darwin from update script armv7l-linux was disabled upstream: https://github.com/VSCodium/vscodium/compare/1.121.03429...1.126.04524 x86_64-darwin was dropped downstream: fdb820602ba46f2f --- pkgs/applications/editors/vscode/update-vscodium.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/applications/editors/vscode/update-vscodium.sh b/pkgs/applications/editors/vscode/update-vscodium.sh index 6420ff0ee1f2..49a92b9fb35a 100755 --- a/pkgs/applications/editors/vscode/update-vscodium.sh +++ b/pkgs/applications/editors/vscode/update-vscodium.sh @@ -19,10 +19,8 @@ fi for i in \ "x86_64-linux linux-x64 tar.gz" \ "aarch64-linux linux-arm64 tar.gz" \ - "armv7l-linux linux-armhf tar.gz" \ "loongarch64-linux linux-loong64 tar.gz" \ - "aarch64-darwin darwin-arm64 zip" \ - "x86_64-darwin darwin-x64 zip"; do + "aarch64-darwin darwin-arm64 zip"; do set -- $i hash=$(nix --extra-experimental-features nix-command hash convert --hash-algo sha256 --to sri $(nix-prefetch-url "https://github.com/VSCodium/vscodium/releases/download/$latestVersion/VSCodium-$2-$latestVersion.$3")) update-source-version vscodium $latestVersion $hash --system=$1 --ignore-same-version