nixpkgs/pkgs/tools/admin/realvnc-vnc-viewer/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
758 B
Nix
Raw Normal View History

{ lib
, stdenv
2023-07-07 14:34:05 +00:00
, callPackage
}:
2023-07-07 14:34:05 +00:00
let
2021-07-25 07:11:32 +00:00
pname = "realvnc-vnc-viewer";
2023-06-12 15:42:52 +00:00
version = "7.5.1";
2021-07-25 07:11:32 +00:00
meta = with lib; {
description = "VNC remote desktop client software by RealVNC";
homepage = "https://www.realvnc.com/en/connect/download/viewer/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2021-07-25 07:11:32 +00:00
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 ];
2023-07-07 14:34:05 +00:00
platforms = [ "x86_64-linux" ] ++ platforms.darwin;
2021-07-25 07:11:32 +00:00
};
2023-07-07 14:34:05 +00:00
in
if stdenv.isDarwin then callPackage ./darwin.nix { inherit pname version meta; }
else callPackage ./linux.nix { inherit pname version meta; }