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-04-06 23:10:24 -0700
committerAustin Butler <austinabutler@gmail.com>2021-04-06 23:10:24 -0700
commit5df9c14ceeb43f64a5f2927cea702054dd769073 (patch)
tree0abeee40c67f64aa65c72337968d0d63489d9491 /pkgs/tools/admin/nomachine-client
parent4cb48cc25622334f17ec6b9bf56e83de0d521fb7 (diff)
nomachine-client: 7.2.3 -> 7.4.1
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 fa5763178bd5d..0daa65cc9804f 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.2";
-  versionMinor = "3";
-  versionBuild_x86_64 = "8";
-  versionBuild_i686 = "8";
+  versionMajor = "7.4";
+  versionMinor = "1";
+  versionBuild_x86_64 = "1";
+  versionBuild_i686 = "1";
 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 = "1x60vmngq4927qvy6ljmyvwlz5lapilld3495w3y3jdllwd3dxp4";
+          sha256 = "1qir9ii0h5ali87mjzjl72dm1ky626d7y59jfpglakqxzqhjamdz";
         }
       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 = "0dx921g6w3gk0x4p771qqxbbi16vl11hmdzzwhfczrq90pgzrhks";
+          sha256 = "1gxiysc09k3jz1pkkyfqgw2fygcnmrnskk6b9vn4fjnvsab4py60";
         }
       else
         throw "NoMachine client is not supported on ${stdenv.hostPlatform.system}";