summary refs log tree commit diff
path: root/pkgs/tools/inputmethods/droidmote/default.nix
blob: 017c548f84d3efbf3c7574b3d39e1f904a63db23 (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
60
61
62
{ lib, stdenv, fetchurl, autoPatchelfHook }:

let
  srcs = {
    x86_64-linux = fetchurl {
      urls = [
        "https://videomap.it/script/dms-ubuntu-x64"
        "https://archive.org/download/videomap/dms-ubuntu-x64"
      ];
      sha256 = "1x7pp6k27lr206a8j2pn0wf4wjb0zi28s0g1g3rb08jmr8fh1jnh";
    };
    i686-linux = fetchurl {
      urls = [
        "https://videomap.it/script/dms-ubuntu-x32"
        "https://archive.org/download/videomap/dms-ubuntu-x32"
      ];
      sha256 = "1d62d7jz50wzk5rqqm3xab66jdzi9i1j6mwxf7r7nsgm6j5zz8r4";
    };
    aarch64-linux = fetchurl {
      urls = [
        "https://videomap.it/script/dms-ubuntu-arm64"
        "https://archive.org/download/videomap/dms-ubuntu-arm64"
      ];
      sha256 = "1l1x7iqbxn6zsh3d37yb5x15qsxlwy3cz8g2g8vnzkgaafw9vva0";
    };
    armv7l-linux = fetchurl {
      urls = [
        "https://videomap.it/script/dms-ubuntu-arm"
        "https://archive.org/download/videomap/dms-ubuntu-arm"
      ];
      sha256 = "1i7q9mylzvbsfydv4xf83nyqkh0nh01612jrqm93q1w6d0k2zvcd";
    };
  };
in
stdenv.mkDerivation rec {
  pname = "droidmote";
  version = "3.0.6";

  src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");

  dontUnpack = true;
  dontBuild = true;

  nativeBuildInputs = [ autoPatchelfHook ];

  installPhase = ''
    runHook preInstall

    install -m755 -D $src $out/bin/droidmote

    runHook postInstall
  '';

  meta = with lib; {
    description = "Control your computer from your couch";
    homepage = "https://www.videomap.it/";
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    license = licenses.unfree;
    maintainers = with maintainers; [ atila ];
    platforms = lib.attrNames srcs;
  };
}