about summary refs log tree commit diff
path: root/pkgs/servers/home-assistant/custom-components/awtrix/default.nix
blob: 738dbbea5dbcaef35c5e580b891ca8244efe9971 (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
{ lib
, fetchFromGitHub
, buildHomeAssistantComponent
, requests
}:

buildHomeAssistantComponent rec {
  owner = "10der";
  domain = "awtrix";
  version = "unstable-2024-05-26";

  src = fetchFromGitHub {
    inherit owner;
    repo = "homeassistant-custom_components-awtrix";
    rev = "329d8eec28478574b9f34778f96b5768f30be2ab";
    hash = "sha256-ucSaQWMS6ZwXHnw5Ct/STxpl1JjBRua3edrLvBAsdyw=";
  };

  propagatedBuildInputs = [
    requests
  ];

  meta = with lib; {
    description = "Home-assistant integration for awtrix";
    homepage = "https://github.com/10der/homeassistant-custom_components-awtrix";
    maintainers = with maintainers; [ pinpox ];
    license = licenses.mit;
  };
}