tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
vmware-horizon-client: 2203 -> 2206
Sean Buckley
3 years ago
fbfca3d7
252244a9
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
networking
remote
vmware-horizon-client
default.nix
+4
-4
pkgs/applications/networking/remote/vmware-horizon-client/default.nix
···
9
9
, configText ? ""
10
10
}:
11
11
let
12
12
-
version = "2203";
12
12
+
version = "2206";
13
13
14
14
sysArch =
15
15
if stdenv.hostPlatform.system == "x86_64-linux" then "x64"
···
35
35
pname = "vmware-horizon-files";
36
36
inherit version;
37
37
src = fetchurl {
38
38
-
url = "https://download3.vmware.com/software/CART23FQ1_LIN_2203_TARBALL/VMware-Horizon-Client-Linux-2203-8.5.0-19586897.tar.gz";
39
39
-
sha256 = "27429dddaeedfa8b701d7aa7868f60ad58efa42687d7f27e84375fda9f5cd137";
38
38
+
url = "https://download3.vmware.com/software/CART23FQ2_LIN_2206_TARBALL/VMware-Horizon-Client-Linux-2206-8.6.0-20094634.tar.gz";
39
39
+
sha256 = "9819eae5708bf0d71156b81283e3a70100e2e22de9db827a8956ca8e83b2414a";
40
40
};
41
41
nativeBuildInputs = [ makeWrapper ];
42
42
installPhase = ''
···
51
51
rm "$out/lib/vmware/gcc/libstdc++.so.6"
52
52
53
53
# This library causes the program to core-dump occasionally. Use ours instead.
54
54
-
rm $out/lib/vmware/view/crtbora/libcairo.*
54
54
+
rm -r $out/lib/vmware/view/crtbora
55
55
56
56
${lib.concatMapStrings wrapBinCommands bins}
57
57
'';