summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/HermesLedControl/default.nix
blob: 77164f56866fdc5191b6836ed8944dc0cf55da31 (plain)
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
{ lib, pkgs, python3Packages, makeWrapper, ... }:

# How to use:
# create configuration configuration.yml:
#   engine: "rhasspy"
#   pathToConfig: "/var/lib/rhasspy/de/profile.json"
#   hardware: "respeaker4MicArray"
#   pattern: "fake-name"
#   enableDoA: false
# and run HermesLedControl --hermesLedControlConfig path-to-config.yml

# all available config options can be see in:
#   result/result/lib/HermesLedControl/models/Configuration.py


with python3Packages; buildPythonApplication rec {
  name = "HermesLedControl-${version}";
  format = "other";
  version = "3.0.4";

  src = pkgs.fetchFromGitHub {
    owner = "project-alice-assistant";
    repo = "HermesLedControl";
    rev = "v${version}";
    hash = "sha256-fVbTQPSo3fNjLb8PDDDqhMC9Hez01rTH46cKz/mfwoU=";
  };

  patches = [
    ./remove-logger.patch
  ];

  execWrapper = ''
    #!/bin/sh
    cd $out/lib/HermesLedControl && \
      PYTHONPATH="${makePythonPath propagatedBuildInputs}" exec \
        ${python}/bin/python  "$out/lib/HermesLedControl/main.py" "$@"
  '';

  installPhase = ''
    install -d "$out/lib/"
    install -d "$out/bin"
    cp -r . $out/lib/HermesLedControl

    echo "${execWrapper}" > HermesLedControl
    install -Dm755 HermesLedControl $out/bin/HermesLedControl

  '';

  propagatedBuildInputs = [
    spidev gpiozero rpi-gpio pyyaml paho-mqtt types-pyyaml makeWrapper
  ];

  meta = {
    homepage = "https://github.com/project-alice-assistant/HermesLedControl";
    description = "Provides an easy way to control your leds in an Hermes environment";
    license = lib.licenses.gpl3;
  };
}