home-assistant-custom-components.yoto_ha: init at 1.22.0

This commit is contained in:
Otto Sabart
2025-01-02 21:00:00 +01:00
parent 4efb59aa6e
commit eb75913a1a
@@ -0,0 +1,31 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
yoto-api,
}:
buildHomeAssistantComponent rec {
owner = "cdnninja";
domain = "yoto";
version = "1.22.0";
src = fetchFromGitHub {
owner = "cdnninja";
repo = "yoto_ha";
tag = "v${version}";
hash = "sha256-uaakUxuPxYqLnE2UK6ept91Lycvvhr0r9vZw44y1W4g=";
};
dependencies = [
yoto-api
];
meta = with lib; {
changelog = "https://github.com/cdnninja/yoto_ha/releases/tag/${src.tag}";
description = "Home Assistant Integration for Yoto.";
homepage = "https://github.com/cdnninja/yoto_ha";
maintainers = with maintainers; [ seberm ];
license = licenses.mit;
};
}