nomachine-client: 8.13.1_1 -> 9.2.18_3 (#462130)

This commit is contained in:
Kim Lindberger
2025-11-24 15:06:54 +00:00
committed by GitHub
+6 -6
View File
@@ -9,10 +9,10 @@
libpulseaudio,
}:
let
versionMajor = "8.13";
versionMinor = "1";
versionBuild_x86_64 = "1";
versionBuild_i686 = "1";
versionMajor = "9.2";
versionMinor = "18";
versionBuild_x86_64 = "3";
versionBuild_i686 = "3";
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-8rxlxdtGU8avpvYJr+bpnsy5v91sqtlij/MCGWrcanY=";
sha256 = "sha256-/ElNG6zIOdE3Qwf/si9fKXMLxM81ZmRZmvbc6rw/M0c=";
}
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-Ekyxc4wODjqWhp0aINhaPGLy9lh6Rt9AmxIt1ulE8Go=";
sha256 = "sha256-uLkBprPjYyWN0jwB6rJwG1sLbIg/jAjx57joLBhVwr0=";
}
else
throw "NoMachine client is not supported on ${stdenv.hostPlatform.system}";