home-assistant-custom-components.somweb: init at 1.1.0
This commit is contained in:
parent
d5e5482fb4
commit
b19db05d45
@ -56,6 +56,8 @@
|
||||
|
||||
smartthinq-sensors = callPackage ./smartthinq-sensors {};
|
||||
|
||||
somweb = callPackage ./somweb {};
|
||||
|
||||
spook = callPackage ./spook {};
|
||||
|
||||
tuya_local = callPackage ./tuya_local {};
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user