File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed
pkgs/servers/home-assistant/custom-components/miraie Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ lib ,
3+ buildHomeAssistantComponent ,
4+ fetchFromGitHub ,
5+ miraie-ac ,
6+ aiomqtt ,
7+ nix-update-script ,
8+ } :
9+
10+ buildHomeAssistantComponent rec {
11+ owner = "rkzofficial" ;
12+ domain = "miraie" ;
13+ version = "1.1.6" ;
14+
15+ src = fetchFromGitHub {
16+ owner = "rkzofficial" ;
17+ repo = "ha-miraie-ac" ;
18+ tag = "v${ version } " ;
19+ hash = "sha256-5VpLfTKOLdx8P693jaW4o79CH2NKkgkgl7ai+I6JRQs=" ;
20+ } ;
21+
22+ dependencies = [
23+ miraie-ac
24+ aiomqtt
25+ ] ;
26+
27+ passthru . updateScript = nix-update-script { } ;
28+
29+ meta = {
30+ changelog = "https://github.com/rkzofficial/ha-miraie-ac/releases/tag/v${ version } " ;
31+ description = "Home Assistant component for Miraie ACs" ;
32+ homepage = "https://github.com/rkzofficial/ha-miraie-ac" ;
33+ maintainers = with lib . maintainers ; [ ananthb ] ;
34+ license = lib . licenses . asl20 ;
35+ } ;
36+ }
You can’t perform that action at this time.
0 commit comments