home-assistant-custom-components.polaris-mqtt: init at 1.0.10

This commit is contained in:
K900
2025-10-07 08:17:29 +03:00
parent 674c2b09c5
commit f9db11fac2
@@ -0,0 +1,25 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
}:
buildHomeAssistantComponent rec {
owner = "samoswall";
domain = "polaris";
version = "1.0.10";
src = fetchFromGitHub {
owner = "samoswall";
repo = "polaris-mqtt";
tag = "v${version}";
hash = "sha256-GxNGZISV/YjMLH2hpoyuyKGvRDiZ3ejI2eJ7o00dqK8=";
};
meta = {
description = "Polaris IQ Home devices integration to Home Assistant";
homepage = "https://github.com/samoswall/polaris-mqtt";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.k900 ];
};
}