about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote/anydesk/default.nix
blob: a6858a7b5fdf04cd7d453bc93bba5d1ac5c1efed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{ stdenv, fetchurl, makeWrapper
, cairo, gdk_pixbuf, glib, gnome2, gtk2, pango, xorg
, lsb-release }:

let
  sha256 = {
    "x86_64-linux" = "0g19sac4j3m1nf400vn6qcww7prqg2p4k4zsj74i109kk1396aa2";
    "i686-linux"   = "1dd4ai2pclav9g872xil3x67bxy32gvz9pb3w76383pcsdh5zh45";
  }."${stdenv.system}" or (throw "system ${stdenv.system} not supported");

  arch = {
    "x86_64-linux" = "amd64";
    "i686-linux"   = "i686";
  }."${stdenv.system}" or (throw "system ${stdenv.system} not supported");

in stdenv.mkDerivation rec {
  name = "anydesk-${version}";
  version = "2.9.4";

  src = fetchurl {
    url = "https://download.anydesk.com/linux/${name}-${arch}.tar.gz";
    inherit sha256;
  };

  libPath = stdenv.lib.makeLibraryPath ([
    cairo gdk_pixbuf glib gtk2 stdenv.cc.cc pango
    gnome2.gtkglext
  ] ++ (with xorg; [
    libxcb libX11 libXdamage libXext libXfixes libXi
    libXrandr libXtst
  ]));

  nativeBuildInputs = [ makeWrapper ];

  installPhase = ''
    mkdir -p $out/{bin,share/icons/hicolor,share/doc/anydesk}
    install -m755 anydesk $out/bin/anydesk
    cp changelog copyright README $out/share/doc/anydesk
    cp -r icons/* $out/share/icons/hicolor/
  '';

  postFixup = ''
    patchelf \
      --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \
      --set-rpath "${libPath}" \
      $out/bin/anydesk

    wrapProgram $out/bin/anydesk \
      --prefix PATH : ${stdenv.lib.makeBinPath [ lsb-release ]}
  '';

  meta = with stdenv.lib; {
    description = "Desktop sharing application, providing remote support and online meetings";
    homepage = http://www.anydesk.com;
    license = licenses.unfree;
    platforms = platforms.linux;
    maintainers = with maintainers; [ peterhoeg ];
  };
}