Merge pull request #69712 from shyim/update-anydesk
anydesk: 4.0.1 -> 5.1.2
This commit is contained in:
commit
520a658b26
|
@ -5904,6 +5904,12 @@
|
||||||
githubId = 819413;
|
githubId = 819413;
|
||||||
name = "Benedict Aas";
|
name = "Benedict Aas";
|
||||||
};
|
};
|
||||||
|
shyim = {
|
||||||
|
email = "s.sayakci@gmail.com";
|
||||||
|
github = "shyim";
|
||||||
|
githubId = 6224096;
|
||||||
|
name = "Soner Sayakci";
|
||||||
|
};
|
||||||
siddharthist = {
|
siddharthist = {
|
||||||
email = "langston.barrett@gmail.com";
|
email = "langston.barrett@gmail.com";
|
||||||
github = "langston-barrett";
|
github = "langston-barrett";
|
||||||
|
|
|
@ -4,22 +4,22 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
sha256 = {
|
sha256 = {
|
||||||
x86_64-linux = "08kdxsg9npb1nmlr2jyq7p238735kqkp7c5xckxn6rc4cp12n2y2";
|
x86_64-linux = "0mixw2sk7li1hjagibwzdgbfnrih5acricczqmfks1gsinjqrn82";
|
||||||
i686-linux = "11r5d4234zbkkgyrd7q9x3w7s7lailnq7z4x8cnhpr8vipzrg7h2";
|
i386-linux = "1gshd4vm8ysn636r1z44vmzdzrgybsmj8ma4zdabvs9jsbm2da3c";
|
||||||
}.${stdenv.hostPlatform.system} or (throw "system ${stdenv.hostPlatform.system} not supported");
|
}.${stdenv.hostPlatform.system} or (throw "system ${stdenv.hostPlatform.system} not supported");
|
||||||
|
|
||||||
arch = {
|
arch = {
|
||||||
x86_64-linux = "amd64";
|
x86_64-linux = "amd64";
|
||||||
i686-linux = "i686";
|
i386-linux = "i386";
|
||||||
}.${stdenv.hostPlatform.system} or (throw "system ${stdenv.hostPlatform.system} not supported");
|
}.${stdenv.hostPlatform.system} or (throw "system ${stdenv.hostPlatform.system} not supported");
|
||||||
|
|
||||||
description = "Desktop sharing application, providing remote support and online meetings";
|
description = "Desktop sharing application, providing remote support and online meetings";
|
||||||
|
|
||||||
desktopItem = makeDesktopItem {
|
desktopItem = makeDesktopItem {
|
||||||
name = "anydesk";
|
name = "AnyDesk";
|
||||||
exec = "@out@/bin/anydesk";
|
exec = "@out@/bin/anydesk";
|
||||||
icon = "anydesk";
|
icon = "anydesk";
|
||||||
desktopName = "anydesk";
|
desktopName = "AnyDesk";
|
||||||
genericName = description;
|
genericName = description;
|
||||||
categories = "Application;Network;";
|
categories = "Application;Network;";
|
||||||
startupNotify = "false";
|
startupNotify = "false";
|
||||||
|
@ -27,7 +27,7 @@ let
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "anydesk";
|
pname = "anydesk";
|
||||||
version = "4.0.1";
|
version = "5.1.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.anydesk.com/linux/${pname}-${version}-${arch}.tar.gz";
|
url = "https://download.anydesk.com/linux/${pname}-${version}-${arch}.tar.gz";
|
||||||
|
@ -40,7 +40,7 @@ in stdenv.mkDerivation rec {
|
||||||
pangox_compat polkit polkit_gnome
|
pangox_compat polkit polkit_gnome
|
||||||
] ++ (with xorg; [
|
] ++ (with xorg; [
|
||||||
libxcb libX11 libXdamage libXext libXfixes libXi libXmu
|
libxcb libX11 libXdamage libXext libXfixes libXi libXmu
|
||||||
libXrandr libXtst libXt libICE libSM
|
libXrandr libXtst libXt libICE libSM libXrender
|
||||||
]);
|
]);
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
@ -50,7 +50,7 @@ in stdenv.mkDerivation rec {
|
||||||
|
|
||||||
mkdir -p $out/bin $out/share/{applications,doc/anydesk,icons/hicolor}
|
mkdir -p $out/bin $out/share/{applications,doc/anydesk,icons/hicolor}
|
||||||
install -m755 anydesk $out/bin/anydesk
|
install -m755 anydesk $out/bin/anydesk
|
||||||
cp changelog copyright README $out/share/doc/anydesk
|
cp copyright README $out/share/doc/anydesk
|
||||||
cp -r icons/* $out/share/icons/hicolor/
|
cp -r icons/* $out/share/icons/hicolor/
|
||||||
cp ${desktopItem}/share/applications/*.desktop $out/share/applications
|
cp ${desktopItem}/share/applications/*.desktop $out/share/applications
|
||||||
|
|
||||||
|
@ -75,6 +75,6 @@ in stdenv.mkDerivation rec {
|
||||||
homepage = https://www.anydesk.com;
|
homepage = https://www.anydesk.com;
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ peterhoeg ];
|
maintainers = with maintainers; [ shyim ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue