Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nomachine-client: 6.7.6 -> 6.8.1

(cherry picked from commit 43dc5c0e8f775e182fbdaa70ffe2fa46cb531c1a)

talyz 3bf149e4 fdf5764e

+6 -6
+6 -6
pkgs/tools/admin/nomachine-client/default.nix
··· 1 1 { stdenv, lib, file, fetchurl, makeWrapper, 2 2 autoPatchelfHook, jsoncpp, libpulseaudio }: 3 3 let 4 - versionMajor = "6.7"; 5 - versionMinor = "6"; 6 - versionBuild_x86_64 = "11"; 7 - versionBuild_i686 = "11"; 4 + versionMajor = "6.8"; 5 + versionMinor = "1"; 6 + versionBuild_x86_64 = "1"; 7 + versionBuild_i686 = "1"; 8 8 in 9 9 stdenv.mkDerivation rec { 10 10 pname = "nomachine-client"; ··· 14 14 if stdenv.hostPlatform.system == "x86_64-linux" then 15 15 fetchurl { 16 16 url = "https://download.nomachine.com/download/${versionMajor}/Linux/nomachine_${version}_${versionBuild_x86_64}_x86_64.tar.gz"; 17 - sha256 = "1mka0a7p03y53zsf0srrcj4f7sigda5vndrwqhr0vncc2qws03k0"; 17 + sha256 = "07330sxqjmzdn8kwxn9r49j28lsbp7mmrsxcyl8r32c3g355wskl"; 18 18 } 19 19 else if stdenv.hostPlatform.system == "i686-linux" then 20 20 fetchurl { 21 21 url = "https://download.nomachine.com/download/${versionMajor}/Linux/nomachine_${version}_${versionBuild_i686}_i686.tar.gz"; 22 - sha256 = "1g94s65bp99nfmzvwv1wasvjhgjbfg9jkc089qimi0lvr8ajabkx"; 22 + sha256 = "03b2648nzmc2amgrqflsxihx5yjp7rz906g655az4j2hl7y0b0bs"; 23 23 } 24 24 else 25 25 throw "NoMachine client is not supported on ${stdenv.hostPlatform.system}";