home-assistant-custom-components.somweb: init at 1.1.0

This commit is contained in:
Nikita Uvarov 2024-08-07 12:13:34 +02:00
parent d5e5482fb4
commit b19db05d45
2 changed files with 31 additions and 0 deletions

View File

@ -56,6 +56,8 @@
smartthinq-sensors = callPackage ./smartthinq-sensors {};
somweb = callPackage ./somweb {};
spook = callPackage ./spook {};
tuya_local = callPackage ./tuya_local {};

View File

@ -0,0 +1,29 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
somweb,
}:
buildHomeAssistantComponent rec {
owner = "taarskog";
domain = "somweb";
version = "1.1.0";
src = fetchFromGitHub {
inherit owner;
repo = "home-assistant-component-somweb";
rev = "refs/tags/v${version}";
hash = "sha256-anOcpaGeblFVaP2EFVuxx1EuXnNgxy/QoYqvYJMv1Fo=";
};
dependencies = [ somweb ];
meta = with lib; {
changelog = "https://github.com/taarskog/home-assistant-component-somweb/releases/tag/v${version}";
description = "Custom component for Home Assistant to manage garage doors and gates by Sommer through SOMweb";
homepage = "https://github.com/taarskog/home-assistant-component-somweb";
maintainers = with maintainers; [ uvnikita ];
license = licenses.mit;
};
}