52 lines
1.7 KiB
Nix
52 lines
1.7 KiB
Nix
{ lib, stdenv, fetchurl, autoPatchelfHook, rpmextract, libX11, libXext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "realvnc-vnc-viewer";
|
|
version = "6.21.920";
|
|
|
|
src = {
|
|
"x86_64-linux" = fetchurl {
|
|
url = "https://www.realvnc.com/download/file/viewer.files/VNC-Viewer-${version}-Linux-x64.rpm";
|
|
sha256 = "1qghc5380h4b2pczksmky3kcffz5wn9shw033w4f969wl96p31fz";
|
|
};
|
|
"i686-linux" = fetchurl {
|
|
url = "https://www.realvnc.com/download/file/viewer.files/VNC-Viewer-${version}-Linux-x86.rpm";
|
|
sha256 = "034iwqxpqhnm6i292fakva7vkwrrzamwcvbm7xyccpd54adj0grn";
|
|
};
|
|
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook rpmextract ];
|
|
buildInputs = [ libX11 libXext ];
|
|
|
|
unpackPhase = ''
|
|
rpmextract $src
|
|
'';
|
|
|
|
postPatch = ''
|
|
substituteInPlace ./usr/share/applications/realvnc-vncviewer.desktop \
|
|
--replace /usr/share/icons/hicolor/48x48/apps/vncviewer48x48.png vncviewer48x48.png
|
|
substituteInPlace ./usr/share/mimelnk/application/realvnc-vncviewer-mime.desktop \
|
|
--replace /usr/share/icons/hicolor/48x48/apps/vncviewer48x48.png vncviewer48x48.png
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mv usr $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "VNC remote desktop client software by RealVNC";
|
|
homepage = "https://www.realvnc.com/en/connect/download/viewer/";
|
|
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; [ angustrau ];
|
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
|
};
|
|
}
|