1{
2 lib,
3 buildHomeAssistantComponent,
4 fetchFromGitHub,
5}:
6
7buildHomeAssistantComponent rec {
8 owner = "tesharp";
9 domain = "systemair";
10 version = "0.2.0";
11
12 src = fetchFromGitHub {
13 inherit owner;
14 repo = "systemair";
15 tag = "v${version}";
16 hash = "sha256-lzFnKPkBOt2fkVGWCj1M/skSr8V39GgDHS+0HD4ACAw=";
17 };
18
19 meta = with lib; {
20 changelog = "https://github.com/tesharp/systemair/releases/tag/v${version}";
21 description = "Home Assistant component for Systemair SAVE Connect 2";
22 homepage = "https://github.com/tesharp/systemair";
23 maintainers = with maintainers; [ uvnikita ];
24 license = licenses.mit;
25 };
26}