mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
25 lines
814 B
Nix
25 lines
814 B
Nix
{ lib
|
|
, stdenv
|
|
, callPackage
|
|
}:
|
|
let
|
|
pname = "realvnc-vnc-viewer";
|
|
version = "7.5.1";
|
|
|
|
meta = with lib; {
|
|
description = "VNC remote desktop client software by RealVNC";
|
|
homepage = "https://www.realvnc.com/en/connect/download/viewer/";
|
|
sourceProvenance = with 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;
|
|
hydraPlatforms = [];
|
|
mainProgram = "vncviewer";
|
|
};
|
|
in
|
|
if stdenv.isDarwin then callPackage ./darwin.nix { inherit pname version meta; }
|
|
else callPackage ./linux.nix { inherit pname version meta; }
|