mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #43225 from peterhoeg/f/anydesk
anydesk: fix application shortcut
This commit is contained in:
commit
b4bc6a6399
1 changed files with 30 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, makeWrapper
|
||||
, cairo, gdk_pixbuf, glib, gnome2, gtk2, pango, xorg
|
||||
{ stdenv, fetchurl, autoPatchelfHook, makeWrapper, makeDesktopItem
|
||||
, atk, cairo, freetype, gdk_pixbuf, glib, gnome2, gtk2, libGLU_combined, pango, xorg
|
||||
, lsb-release }:
|
||||
|
||||
let
|
||||
|
@ -13,6 +13,18 @@ let
|
|||
"i686-linux" = "i686";
|
||||
}."${stdenv.system}" or (throw "system ${stdenv.system} not supported");
|
||||
|
||||
description = "Desktop sharing application, providing remote support and online meetings";
|
||||
|
||||
desktopItem = makeDesktopItem rec {
|
||||
name = "anydesk";
|
||||
exec = "@out@/bin/anydesk";
|
||||
icon = "anydesk";
|
||||
desktopName = "anydesk";
|
||||
genericName = description;
|
||||
categories = "Application;Network;";
|
||||
startupNotify = "false";
|
||||
};
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "anydesk-${version}";
|
||||
version = "2.9.4";
|
||||
|
@ -22,35 +34,43 @@ in stdenv.mkDerivation rec {
|
|||
inherit sha256;
|
||||
};
|
||||
|
||||
libPath = stdenv.lib.makeLibraryPath ([
|
||||
cairo gdk_pixbuf glib gtk2 stdenv.cc.cc pango
|
||||
gnome2.gtkglext
|
||||
buildInputs = [
|
||||
atk cairo gdk_pixbuf glib gtk2 stdenv.cc.cc pango
|
||||
gnome2.gtkglext libGLU_combined
|
||||
] ++ (with xorg; [
|
||||
libxcb libX11 libXdamage libXext libXfixes libXi
|
||||
libxcb libX11 libXdamage libXext libXfixes libXi libXmu
|
||||
libXrandr libXtst
|
||||
]));
|
||||
]);
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/{bin,share/icons/hicolor,share/doc/anydesk}
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin $out/share/{applications,doc/anydesk,icons/hicolor}
|
||||
install -m755 anydesk $out/bin/anydesk
|
||||
cp changelog copyright README $out/share/doc/anydesk
|
||||
cp -r icons/* $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 "${libPath}" \
|
||||
--set-rpath "${stdenv.lib.makeLibraryPath buildInputs}" \
|
||||
$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; {
|
||||
description = "Desktop sharing application, providing remote support and online meetings";
|
||||
inherit description;
|
||||
homepage = http://www.anydesk.com;
|
||||
license = licenses.unfree;
|
||||
platforms = platforms.linux;
|
||||
|
|
Loading…
Reference in a new issue