Skip to content

Commit

Permalink
Merge pull request #112179 from otavio/auto-upgrade/anydesk
Browse files Browse the repository at this point in the history
anydesk: Add auto-update support
  • Loading branch information
Mic92 committed Mar 7, 2021
2 parents 854859a + 83e1c6c commit 10a3345
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion pkgs/applications/networking/remote/anydesk/default.nix
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, makeWrapper, makeDesktopItem
{ lib, stdenv, fetchurl, makeWrapper, makeDesktopItem, genericUpdater, writeShellScript
, atk, cairo, gdk-pixbuf, glib, gnome2, gtk2, libGLU, libGL, pango, xorg
, lsb-release, freetype, fontconfig, polkit, polkit_gnome
, pulseaudio }:
Expand Down Expand Up @@ -28,6 +28,19 @@ in stdenv.mkDerivation rec {
sha256 = "1qbq6r0yanjappsi8yglw8r54bwf32bjb2i63awmr6pk5kmhhy3r";
};

passthru = {
updateScript = genericUpdater {
inherit pname version;
versionLister = writeShellScript "anydesk-versionLister" ''
echo "# Versions for $1:" >> "$2"
curl -s https://anydesk.com/en/downloads/linux \
| grep "https://[a-z0-9._/-]*-amd64.tar.gz" -o \
| uniq \
| sed 's,.*/anydesk-\(.*\)-amd64.tar.gz,\1,g'
'';
};
};

buildInputs = [
atk cairo gdk-pixbuf glib gtk2 stdenv.cc.cc pango
gnome2.gtkglext libGLU libGL freetype fontconfig
Expand Down

0 comments on commit 10a3345

Please sign in to comment.