Skip to content

Commit 8a16a25

Browse files
committed
home-assistant-custom-components.miraie: init at 1.1.6
1 parent fee4d7a commit 8a16a25

File tree

1 file changed

+36
-0
lines changed
  • pkgs/servers/home-assistant/custom-components/miraie

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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+
}

0 commit comments

Comments
 (0)