Skip to content

Commit d57718d

Browse files
committed
citrix-workspace: 24.5.0.76 -> 24.8.0.98
1 parent 2227975 commit d57718d

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

pkgs/applications/networking/remote/citrix-workspace/generic.nix

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ let
2929
paths = [ opencv4 ];
3030
postBuild = ''
3131
for so in ${opencv4}/lib/*.so; do
32-
ln -s "$so" $out/lib/$(basename "$so").407
32+
ln -s "$so" $out/lib/$(basename "$so").407 || true
33+
ln -s "$so" $out/lib/$(basename "$so").410 || true
3334
done
3435
'';
3536
};
@@ -201,7 +202,7 @@ stdenv.mkDerivation rec {
201202
rm $out/opt/citrix-icaclient/lib/UIDialogLibWebKit.so || true
202203
203204
# We support only Gstreamer 1.0
204-
rm $ICAInstDir/util/{gst_aud_{play,read},gst_*0.10,libgstflatstm0.10.so}
205+
rm $ICAInstDir/util/{gst_aud_{play,read},gst_*0.10,libgstflatstm0.10.so} || true
205206
ln -sf $ICAInstDir/util/gst_play1.0 $ICAInstDir/util/gst_play
206207
ln -sf $ICAInstDir/util/gst_read1.0 $ICAInstDir/util/gst_read
207208
@@ -238,7 +239,7 @@ stdenv.mkDerivation rec {
238239
description = "Citrix Workspace";
239240
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
240241
platforms = [ "x86_64-linux" ] ++ optional (versionOlder version "24") "i686-linux";
241-
maintainers = [ ];
242+
maintainers = with maintainers; [ flacks ];
242243
inherit homepage;
243244
};
244245
}

pkgs/applications/networking/remote/citrix-workspace/sources.nix

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,17 @@ let
5757
x86suffix = "";
5858
homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html";
5959
};
60+
61+
"24.08.0" = {
62+
major = "24";
63+
minor = "8";
64+
patch = "0";
65+
x64hash = "1jb22n6gcv4pv8khg98sv663yfpi47dpkvqgifbhps98iw5zrkbp";
66+
x86hash = "";
67+
x64suffix = "98";
68+
x86suffix = "";
69+
homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html";
70+
};
6071
};
6172

6273
# Retain attribute-names for abandoned versions of Citrix workspace to

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2860,8 +2860,9 @@ with pkgs;
28602860
citrix_workspace_23_11_0
28612861
citrix_workspace_24_02_0
28622862
citrix_workspace_24_05_0
2863+
citrix_workspace_24_08_0
28632864
;
2864-
citrix_workspace = citrix_workspace_24_05_0;
2865+
citrix_workspace = citrix_workspace_24_08_0;
28652866

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

0 commit comments

Comments
 (0)