90 lines
2.7 KiB
Nix
90 lines
2.7 KiB
Nix
{ stdenv, fetchurl, makeWrapper, makeDesktopItem
|
|
, atk, cairo, gdk-pixbuf, glib, gnome2, gtk2, libGLU, libGL, pango, xorg
|
|
, lsb-release, freetype, fontconfig, polkit, polkit_gnome
|
|
, pulseaudio }:
|
|
|
|
let
|
|
sha256 = {
|
|
x86_64-linux = "0az7n4lhmd4pz0spjvyiwd4w1gnqbh8f1fvr1jinsssyq0j26ldj";
|
|
i386-linux = "0vjxbg5hwkqkh600rr75xviwy848r1xw9mxwf6bb6l8b0isvlsgg";
|
|
}.${stdenv.hostPlatform.system} or (throw "system ${stdenv.hostPlatform.system} not supported");
|
|
|
|
arch = {
|
|
x86_64-linux = "amd64";
|
|
i386-linux = "i386";
|
|
}.${stdenv.hostPlatform.system} or (throw "system ${stdenv.hostPlatform.system} not supported");
|
|
|
|
description = "Desktop sharing application, providing remote support and online meetings";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "AnyDesk";
|
|
exec = "@out@/bin/anydesk";
|
|
icon = "anydesk";
|
|
desktopName = "AnyDesk";
|
|
genericName = description;
|
|
categories = "Application;Network;";
|
|
startupNotify = "false";
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "anydesk";
|
|
version = "5.5.2";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"https://download.anydesk.com/linux/${pname}-${version}-${arch}.tar.gz"
|
|
"https://download.anydesk.com/linux/generic-linux/${pname}-${version}-${arch}.tar.gz"
|
|
];
|
|
inherit sha256;
|
|
};
|
|
|
|
buildInputs = [
|
|
atk cairo gdk-pixbuf glib gtk2 stdenv.cc.cc pango
|
|
gnome2.gtkglext libGLU libGL freetype fontconfig
|
|
polkit polkit_gnome pulseaudio
|
|
] ++ (with xorg; [
|
|
libxcb libxkbfile libX11 libXdamage libXext libXfixes libXi libXmu
|
|
libXrandr libXtst libXt libICE libSM libXrender
|
|
]);
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/bin $out/share/{applications,doc/anydesk,icons/hicolor}
|
|
install -m755 anydesk $out/bin/anydesk
|
|
cp copyright README $out/share/doc/anydesk
|
|
cp -r icons/hicolor/* $out/share/icons/hicolor/
|
|
cp ${desktopItem}/share/applications/*.desktop $out/share/applications
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
patchelf \
|
|
--set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
|
|
--set-rpath "${stdenv.lib.makeLibraryPath buildInputs}" \
|
|
$out/bin/anydesk
|
|
|
|
# pangox is not actually necessary (it was only added as a part of gtkglext)
|
|
patchelf \
|
|
--remove-needed libpangox-1.0.so.0 \
|
|
$out/bin/anydesk
|
|
|
|
wrapProgram $out/bin/anydesk \
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ lsb-release ]}
|
|
|
|
substituteInPlace $out/share/applications/*.desktop \
|
|
--subst-var out
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit description;
|
|
homepage = https://www.anydesk.com;
|
|
license = licenses.unfree;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ shyim ];
|
|
};
|
|
}
|