home-assistant-custom-components.hildebrand_glow_ihd: init at 1.8.0

This commit is contained in:
Dan Lock
2025-10-02 16:39:45 +01:00
parent 6a5f6f1a4e
commit 60bfa442ee

View File

@@ -0,0 +1,28 @@
{
lib,
buildHomeAssistantComponent,
fetchFromGitHub,
nix-update-script,
}:
buildHomeAssistantComponent rec {
owner = "megakid";
domain = "hildebrand_glow_ihd";
version = "1.8.0";
src = fetchFromGitHub {
inherit owner;
repo = "ha_hildebrand_glow_ihd_mqtt";
tag = "v${version}";
hash = "sha256-13NmNHaCYDZkWK5uqKeTZlB84UuThNLOAYaPS4QfTKY=";
};
passthru.updateScript = nix-update-script { };
meta = {
changelog = "https://github.com/megakid/ha_hildebrand_glow_ihd_mqtt/releases/tag/${src.tag}";
description = "Home Assistant integration for local MQTT Hildebrand Glow IHD";
homepage = "https://github.com/megakid/ha_hildebrand_glow_ihd_mqtt";
maintainers = with lib.maintainers; [ CodedNil ];
};
}