From 0a7c96e0c45da5bb351ecbeacf9ab1a092b090b8 Mon Sep 17 00:00:00 2001 From: Austin Butler Date: Wed, 22 Apr 2026 22:01:01 -0700 Subject: [PATCH] nomachine-client: 9.2.18_3 -> 9.4.14_1 --- pkgs/by-name/no/nomachine-client/package.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/no/nomachine-client/package.nix b/pkgs/by-name/no/nomachine-client/package.nix index 94b432989887..8ee51201e3ce 100644 --- a/pkgs/by-name/no/nomachine-client/package.nix +++ b/pkgs/by-name/no/nomachine-client/package.nix @@ -9,10 +9,10 @@ libpulseaudio, }: let - versionMajor = "9.2"; - versionMinor = "18"; - versionBuild_x86_64 = "3"; - versionBuild_i686 = "3"; + versionMajor = "9.4"; + versionMinor = "14"; + versionBuild_x86_64 = "1"; + versionBuild_i686 = "1"; in stdenv.mkDerivation rec { pname = "nomachine-client"; @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { 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 = "sha256-/ElNG6zIOdE3Qwf/si9fKXMLxM81ZmRZmvbc6rw/M0c="; + sha256 = "sha256-tLL8l/UgTiVzGs+mwJeRUlVA8lH72JVogBOEpaSr2AY="; } 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 = "sha256-uLkBprPjYyWN0jwB6rJwG1sLbIg/jAjx57joLBhVwr0="; + sha256 = "sha256-pPvg8MCrpCsQiiglRxHHl9wVyndI9JTluX/mwah3wwQ="; } else throw "NoMachine client is not supported on ${stdenv.hostPlatform.system}"; @@ -99,8 +99,8 @@ stdenv.mkDerivation rec { mainProgram = "nxplayer"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = { - fullName = "NoMachine 7 End-User License Agreement"; - url = "https://www.nomachine.com/licensing-7"; + fullName = "NoMachine End User License Agreement, version 9"; + url = "https://www.nomachine.com/licensing/nomachine-end-user-license-agreement"; free = false; }; maintainers = with lib.maintainers; [ talyz ];