Merge pull request #311281 from pathob/home-assistant-custom-component-tuya-local
home-assistant-custom-components.tuya_local: init at 2024.5.2
This commit is contained in:
@@ -44,6 +44,8 @@
|
||||
|
||||
smartthinq-sensors = callPackage ./smartthinq-sensors {};
|
||||
|
||||
tuya_local = callPackage ./tuya_local {};
|
||||
|
||||
waste_collection_schedule = callPackage ./waste_collection_schedule {};
|
||||
|
||||
xiaomi_gateway3 = callPackage ./xiaomi_gateway3 {};
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, buildHomeAssistantComponent
|
||||
, fetchFromGitHub
|
||||
|
||||
# dependencies
|
||||
, tinytuya
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "make-all";
|
||||
domain = "tuya_local";
|
||||
version = "2024.5.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
inherit owner;
|
||||
repo = "tuya-local";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-If5SLLizagolXF5Y43UQK5IZ9oB1lQJVjTorgmtRXtg=";
|
||||
};
|
||||
|
||||
dependencies = [ tinytuya ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Local support for Tuya devices in Home Assistant";
|
||||
homepage = "https://github.com/make-all/tuya-local";
|
||||
changelog = "https://github.com/make-all/tuya-local/releases/tag/${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ pathob ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user