about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-08-29 20:24:17 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2019-08-29 20:24:17 +0200
commit87f818d9b21b16b067048a6ee0178b782886f0f0 (patch)
treeffaba2d0ff5b4a2220c59b1e05d99839098a6cd1 /pkgs/applications/networking/remote
parentf86bbb218cacd968aecdd1374a42d23262c23d3b (diff)
downloadnixlib-87f818d9b21b16b067048a6ee0178b782886f0f0.tar
nixlib-87f818d9b21b16b067048a6ee0178b782886f0f0.tar.gz
nixlib-87f818d9b21b16b067048a6ee0178b782886f0f0.tar.bz2
nixlib-87f818d9b21b16b067048a6ee0178b782886f0f0.tar.lz
nixlib-87f818d9b21b16b067048a6ee0178b782886f0f0.tar.xz
nixlib-87f818d9b21b16b067048a6ee0178b782886f0f0.tar.zst
nixlib-87f818d9b21b16b067048a6ee0178b782886f0f0.zip
citrix_workspace: add 1908 (`citrix_workspace_19_8_0`)
New release:
https://www.citrix.de/downloads/workspace-app/linux/workspace-app-for-linux-latest.html
(unfortunately there's no version-specific link for the latest version).

Also added `preferLocalBuild = true;` to the derivation, due to
`requireFile` you have to build it yourself anyway, however I use
distributed builds by default and figured that this shouldn't be needed
since the longest part of the build would be the upload of the source
archive in that case.
Diffstat (limited to 'pkgs/applications/networking/remote')
-rw-r--r--pkgs/applications/networking/remote/citrix-workspace/default.nix15
1 files changed, 14 insertions, 1 deletions
diff --git a/pkgs/applications/networking/remote/citrix-workspace/default.nix b/pkgs/applications/networking/remote/citrix-workspace/default.nix
index cf89666a379e..33f1f06e0b30 100644
--- a/pkgs/applications/networking/remote/citrix-workspace/default.nix
+++ b/pkgs/applications/networking/remote/citrix-workspace/default.nix
@@ -23,7 +23,7 @@
 , gtk_engines
 , alsaLib
 , zlib
-, version ? "19.6.0"
+, version ? "19.8.0"
 }:
 
 let
@@ -50,6 +50,17 @@ let
         x86suffix = "60";
         homepage  = https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html;
       };
+
+      "19.8.0" = {
+        major     = "19";
+        minor     = "8";
+        patch     = "0";
+        x64hash   = "0f8djw8lp5wihb23y09yac1mh09w1qp422h72r6zfx9k1lqfsdbw";
+        x86hash   = "0afcqirb4q349r3izy88vqkszg6y2wg14iwypk6nrmvwgvcl6jdn";
+        x64suffix = "20";
+        x86suffix = "20";
+        homepage  = https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html;
+      };
     };
 
     # Copied this file largely from the citrix-receiver package
@@ -75,6 +86,8 @@ let
 
       prefixWithBitness = if stdenv.is64bit then "linuxx64" else "linuxx86";
 
+      preferLocalBuild = true;
+
       src = requireFile rec {
         name    = if stdenv.is64bit then "${prefixWithBitness}-${version}.${x64suffix}.tar.gz" else "${prefixWithBitness}-${version}.${x86suffix}.tar.gz";
         sha256  = if stdenv.is64bit then x64hash else x86hash;