Skip to content

Commit

Permalink
Merge pull request #323949 from jackyliu16/update-realvnc
Browse files Browse the repository at this point in the history
realvnc-vnc-viewer: 7.5.1 -> 7.12.0 && move to by-name/
  • Loading branch information
Lassulus authored Jul 8, 2024
2 parents c53e520 + e4da2fc commit bb0c931
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
src = fetchurl rec {
name = "VNC-Viewer-${finalAttrs.version}-MacOSX-universal.dmg";
url = "https://downloads.realvnc.com/download/file/viewer.files/${name}";
sha256 = "0k72fdnx1zmyi9z5n3lazc7s70gcddxq0s73akp0al0y9hzq9prh";
hash = "sha256-haD2QsBF9Dps1V/2tkkALAc7+kUY3PSNj7BjTIqnNcU=";
};
sourceRoot = ".";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
stdenv.mkDerivation (finalAttrs: {
inherit pname version;

src = rec {
src = {
"x86_64-linux" = fetchurl rec {
name = "VNC-Viewer-${finalAttrs.version}-Linux-x64.rpm";
url = "https://downloads.realvnc.com/download/file/viewer.files/${name}";
sha256 = "sha256-Ull9iNi8NxB12YwEThWE0P9k1xOV2LZnebuRrVH/zwI=";
hash = "sha256-KJZbH3mfxuyUslkYvB/RKquEsB7ayJSv6yNqfLmAsGI=";
};
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
}:
let
pname = "realvnc-vnc-viewer";
version = "7.5.1";
version = "7.12.0";

meta = with lib; {
meta = {
description = "VNC remote desktop client software by RealVNC";
homepage = "https://www.realvnc.com/en/connect/download/viewer/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = {
fullName = "VNC Connect End User License Agreement";
url = "https://static.realvnc.com/media/documents/LICENSE-4.0a_en.pdf";
free = false;
};
maintainers = with maintainers; [ emilytrau onedragon ];
platforms = [ "x86_64-linux" ] ++ platforms.darwin;
maintainers = with lib.maintainers; [ emilytrau onedragon ];
platforms = [ "x86_64-linux" ] ++ lib.platforms.darwin;
mainProgram = "vncviewer";
};
in
Expand Down
2 changes: 0 additions & 2 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12259,8 +12259,6 @@ with pkgs;

rtss = callPackage ../development/tools/misc/rtss { };

realvnc-vnc-viewer = callPackage ../tools/admin/realvnc-vnc-viewer { };

re-isearch = callPackage ../applications/search/re-isearch { };

reason-shell = callPackage ../applications/science/misc/reason-shell { };
Expand Down

0 comments on commit bb0c931

Please sign in to comment.