From 144b801d0f19174ca9862ce3e72b41ec4d62c88c Mon Sep 17 00:00:00 2001 From: FliegendeWurst Date: Sun, 30 Mar 2025 18:54:23 +0200 Subject: [PATCH] vscodium: mark non-glibc as broken --- pkgs/applications/editors/vscode/vscodium.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/vscode/vscodium.nix b/pkgs/applications/editors/vscode/vscodium.nix index b8b70b257838..ee41eda0e75d 100644 --- a/pkgs/applications/editors/vscode/vscodium.nix +++ b/pkgs/applications/editors/vscode/vscodium.nix @@ -91,5 +91,7 @@ callPackage ./generic.nix rec { "aarch64-darwin" "armv7l-linux" ]; + # requires libc.so.6 and other glibc specifics + broken = stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isGnu; }; }