Unverified Commit cab425a0 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

home-assistant-custom-components.hildebrand_glow_ihd: init at 1.8.0 (#447710)

parents 5f029a80 60bfa442
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
{
  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 ];
  };
}