about summary refs log tree commit diff
path: root/pkgs/tools/admin/nomachine-client
diff options
context:
space:
mode:
authorAustin Butler <austinabutler@gmail.com>2021-03-06 16:51:58 -0800
committerAustin Butler <austinabutler@gmail.com>2021-03-06 16:51:58 -0800
commitb3c90695a9a23b893f22903c5b9c22f5ba9af3a8 (patch)
tree12afcac1a827a5612de6559c7b1e84760c2c28c4 /pkgs/tools/admin/nomachine-client
parentf754c844d92fe07c1a328de940f55676d2ef3fe1 (diff)
nomachine-client: 7.0.211 -> 7.2.3
Diffstat (limited to 'pkgs/tools/admin/nomachine-client')
-rw-r--r--pkgs/tools/admin/nomachine-client/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/admin/nomachine-client/default.nix b/pkgs/tools/admin/nomachine-client/default.nix
index c419c7e834a2d..fa5763178bd5d 100644
--- a/pkgs/tools/admin/nomachine-client/default.nix
+++ b/pkgs/tools/admin/nomachine-client/default.nix
@@ -1,10 +1,10 @@
 { lib, stdenv, file, fetchurl, makeWrapper,
   autoPatchelfHook, jsoncpp, libpulseaudio }:
 let
-  versionMajor = "7.0";
-  versionMinor = "211";
-  versionBuild_x86_64 = "4";
-  versionBuild_i686 = "4";
+  versionMajor = "7.2";
+  versionMinor = "3";
+  versionBuild_x86_64 = "8";
+  versionBuild_i686 = "8";
 in
   stdenv.mkDerivation rec {
     pname = "nomachine-client";
@@ -14,12 +14,12 @@ in
       if stdenv.hostPlatform.system == "x86_64-linux" then
         fetchurl {
           url = "https://download.nomachine.com/download/${versionMajor}/Linux/nomachine_${version}_${versionBuild_x86_64}_x86_64.tar.gz";
-          sha256 = "06habqsl5gp13sym519r3qp188qwqqfw8p48wcs4zj3kcri6fjz0";
+          sha256 = "1x60vmngq4927qvy6ljmyvwlz5lapilld3495w3y3jdllwd3dxp4";
         }
       else if stdenv.hostPlatform.system == "i686-linux" then
         fetchurl {
           url = "https://download.nomachine.com/download/${versionMajor}/Linux/nomachine_${version}_${versionBuild_i686}_i686.tar.gz";
-          sha256 = "1y4lr95mwilwr7gqsxqvygq4w3dcp4cjh8m06wdi3avwdzrjkgj9";
+          sha256 = "0dx921g6w3gk0x4p771qqxbbi16vl11hmdzzwhfczrq90pgzrhks";
         }
       else
         throw "NoMachine client is not supported on ${stdenv.hostPlatform.system}";