nomachine-client: 9.2.18_3 -> 9.4.14_1 (#512638)

This commit is contained in:
Kim Lindberger
2026-05-05 13:24:41 +00:00
committed by GitHub

View File

@@ -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 ];