Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion pkgs/applications/networking/remote/citrix-workspace/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
libsecret,
libcanberra-gtk3,
sane-backends,
fetchurl,

homepage,
version,
Expand Down Expand Up @@ -87,6 +88,14 @@ let
'';
};

libxml2' = libxml2.overrideAttrs rec {
version = "2.13.8";
src = fetchurl {
url = "mirror://gnome/sources/libxml2/${lib.versions.majorMinor version}/libxml2-${version}.tar.xz";
hash = "sha256-J3KUyzMRmrcbK8gfL0Rem8lDW4k60VuyzSsOhZoO6Eo=";
};
};

in

stdenv.mkDerivation rec {
Expand Down Expand Up @@ -157,7 +166,7 @@ stdenv.mkDerivation rec {
libsecret
libsoup_2_4
libvorbis
libxml2
libxml2'
llvmPackages.libunwind
libgbm
nspr
Expand Down
30 changes: 16 additions & 14 deletions pkgs/applications/networking/remote/citrix-workspace/sources.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,6 @@ let
# The latest versions can be found at https://www.citrix.com/downloads/workspace-app/linux/
# x86 is unsupported past 23.11, see https://docs.citrix.com/en-us/citrix-workspace-app-for-linux/deprecation
supportedVersions = lib.mapAttrs mkVersionInfo {
"23.09.0" = {
major = "23";
minor = "9";
patch = "0";
x64hash = "7b06339654aa27258d6dfa922828b43256e780b282d07109f452246c7aa27514";
x86hash = "95436fb289602cf31c65b7df89da145fc170233cb2e758a2f11116f15b57d382";
x64suffix = "24";
x86suffix = "24";
homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest9.html";
};

"23.11.0" = {
major = "23";
Expand Down Expand Up @@ -69,7 +59,7 @@ let
x86hash = "";
x64suffix = "76";
x86suffix = "";
homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html";
homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest1.html";
};

"24.08.0" = {
Expand All @@ -80,7 +70,7 @@ let
x86hash = "";
x64suffix = "98";
x86suffix = "";
homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html";
homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest-2408.html";
};

"24.11.0" = {
Expand All @@ -91,8 +81,9 @@ let
x86hash = "";
x64suffix = "85";
x86suffix = "";
homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html";
homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest13.html";
};

"25.03.0" = {
major = "25";
minor = "03";
Expand All @@ -101,9 +92,19 @@ let
x86hash = "";
x64suffix = "66";
x86suffix = "";
homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html";
homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest-2503.html";
};

"25.05.0" = {
major = "25";
minor = "05";
patch = "0";
x64hash = "0fwqsxggswms40b5k8saxpm1ghkxppl27x19w8jcslq1f0i1fwqx";
x86hash = "";
x64suffix = "44";
x86suffix = "";
homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html";
};
};

# Retain attribute-names for abandoned versions of Citrix workspace to
Expand All @@ -114,6 +115,7 @@ let
unsupportedVersions = [
"23.02.0"
"23.07.0"
"23.09.0"
];
in
{
Expand Down
4 changes: 2 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2548,15 +2548,15 @@ with pkgs;
circus = with python310Packages; toPythonApplication circus;

inherit (callPackage ../applications/networking/remote/citrix-workspace { })
citrix_workspace_23_09_0
citrix_workspace_23_11_0
citrix_workspace_24_02_0
citrix_workspace_24_05_0
citrix_workspace_24_08_0
citrix_workspace_24_11_0
citrix_workspace_25_03_0
citrix_workspace_25_05_0
;
citrix_workspace = citrix_workspace_25_03_0;
citrix_workspace = citrix_workspace_25_05_0;

cmst = libsForQt5.callPackage ../tools/networking/cmst { };

Expand Down
Loading