Merge pull request #111622 from otavio/upgrade/anydesk
anydesk: 6.0.1 -> 6.1.0
This commit is contained in:
commit
36cef17add
|
@ -4,16 +4,6 @@
|
||||||
, pulseaudio }:
|
, pulseaudio }:
|
||||||
|
|
||||||
let
|
let
|
||||||
sha256 = {
|
|
||||||
x86_64-linux = "19751ygq1ng79aniqx91qawc0cw07cwdjdjd88azc9ww6z6nv0mp";
|
|
||||||
i386-linux = "0dwc7v4p1dz51444zwn0kds23yi87r4h2d3isfj9xwkn90pxb7in";
|
|
||||||
}.${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";
|
description = "Desktop sharing application, providing remote support and online meetings";
|
||||||
|
|
||||||
desktopItem = makeDesktopItem {
|
desktopItem = makeDesktopItem {
|
||||||
|
@ -28,14 +18,14 @@ let
|
||||||
|
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "anydesk";
|
pname = "anydesk";
|
||||||
version = "6.0.1";
|
version = "6.1.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls = [
|
urls = [
|
||||||
"https://download.anydesk.com/linux/${pname}-${version}-${arch}.tar.gz"
|
"https://download.anydesk.com/linux/${pname}-${version}-amd64.tar.gz"
|
||||||
"https://download.anydesk.com/linux/generic-linux/${pname}-${version}-${arch}.tar.gz"
|
"https://download.anydesk.com/linux/generic-linux/${pname}-${version}-amd64.tar.gz"
|
||||||
];
|
];
|
||||||
inherit sha256;
|
sha256 = "1qbq6r0yanjappsi8yglw8r54bwf32bjb2i63awmr6pk5kmhhy3r";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
|
@ -83,7 +73,7 @@ in stdenv.mkDerivation rec {
|
||||||
inherit description;
|
inherit description;
|
||||||
homepage = "https://www.anydesk.com";
|
homepage = "https://www.anydesk.com";
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = platforms.linux;
|
platforms = [ "x86_64-linux" ];
|
||||||
maintainers = with maintainers; [ shyim ];
|
maintainers = with maintainers; [ shyim ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue