From 0675a5f5fb5d41aa58db06918c39be90d5831f9f Mon Sep 17 00:00:00 2001 From: whispers Date: Sat, 30 May 2026 22:55:09 -0400 Subject: [PATCH] citrix_workspace: mark broken due to libsoup 2.4 removal citrix_workspace has a hard dependency on libsoup 2.4 (autoPatchelf fails if it is not present), which is being removed as it is insecure. Thus, this package is broken for now. --- .../networking/remote/citrix-workspace/generic.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/remote/citrix-workspace/generic.nix b/pkgs/applications/networking/remote/citrix-workspace/generic.nix index 1ea48306fe1f..2a9cfe788317 100644 --- a/pkgs/applications/networking/remote/citrix-workspace/generic.nix +++ b/pkgs/applications/networking/remote/citrix-workspace/generic.nix @@ -46,7 +46,7 @@ libredirect, libseccomp, libsecret, - libsoup_2_4, + # libsoup_2_4, libvorbis, libxml2_13, libxslt, @@ -210,7 +210,7 @@ stdenv.mkDerivation rec { libpulseaudio libseccomp libsecret - libsoup_2_4 + # libsoup_2_4 libvorbis libxml2_13 libxslt @@ -443,9 +443,11 @@ stdenv.mkDerivation rec { ''; meta = { - # Older versions need webkitgtk_4_0 which was removed. - # 25.08 bundles the same. - broken = lib.versionOlder version "25.08"; + # citrix_workspace has a hard dependency on libsoup 2.4 (autoPatchelf + # fails if it is not present), which was removed for being insecure. + # + # Versions older than 25.08 also required webkitgtk_4_0, which was removed. + broken = true; license = lib.licenses.unfree; description = "Citrix Workspace"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];