Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
nomachine-client: 6.5.6 -> 6.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
talyz committed Apr 7, 2019
1 parent 780c2de commit 9d1e509
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/tools/admin/nomachine-client/default.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{ stdenv, lib, file, fetchurl, makeWrapper,
autoPatchelfHook, jsoncpp, libpulseaudio }:
let
versionMajor = "6.5";
versionMinor = "6";
versionBuild_x86_64 = "9";
versionBuild_i686 = "8";
versionMajor = "6.6";
versionMinor = "8";
versionBuild_x86_64 = "5";
versionBuild_i686 = "5";
in
stdenv.mkDerivation rec {
pname = "nomachine-client";
Expand All @@ -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 = "07lg5yadxpl5qfvvh067b3kxd8hm3xv95ralm2pyjl4lw6aql46p";
sha256 = "0hsx1nd9m1l35pj4jri88jib1hgf2wh1f42s650y2br2h6bhaixs";
}
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 = "1a23isw09vicazkrypq0kxbb8qy2i4vxiarrgz5xmasjhiy5999a";
sha256 = "1hrp8s17pcqkb4jcnayx81qmm7c1njjp69fkpyqgcnv9vshias1b";
}
else
throw "NoMachine client is not supported on ${stdenv.hostPlatform.system}";
Expand Down

0 comments on commit 9d1e509

Please sign in to comment.