587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
54 lines
1.5 KiB
Nix
54 lines
1.5 KiB
Nix
{ lib
|
|
, stdenv
|
|
, requireFile
|
|
, autoPatchelfHook
|
|
, rpmextract
|
|
, libX11
|
|
, libXext
|
|
, pname
|
|
, version
|
|
, meta
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
inherit pname version;
|
|
|
|
src = {
|
|
"x86_64-linux" = requireFile rec {
|
|
name = "VNC-Viewer-${finalAttrs.version}-Linux-x64.rpm";
|
|
url = "https://downloads.realvnc.com/download/file/viewer.files/${name}";
|
|
sha256 = "sha256-Ull9iNi8NxB12YwEThWE0P9k1xOV2LZnebuRrVH/zwI=";
|
|
message= ''
|
|
vnc-viewer can be downloaded from ${url},
|
|
but the download link require captcha, thus if you wish to use this application,
|
|
you need to download it manually and use follow command to add downloaded files into nix-store
|
|
|
|
$ nix-prefetch-url --type sha256 file:///path/to/${name}
|
|
'';
|
|
};
|
|
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
|
|
|
|
nativeBuildInputs = [ autoPatchelfHook rpmextract ];
|
|
buildInputs = [ libX11 libXext stdenv.cc.cc.libgcc or null ];
|
|
|
|
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 = meta // { mainProgram = "vncviewer"; };
|
|
})
|