Merge pull request #326985 from mindstorms6/homeassistant-elevenlabs
home-assistant-custom-components.elevenlabs_tts: init at 2.3.0
This commit is contained in:
@@ -12,6 +12,8 @@
|
||||
|
||||
better_thermostat = callPackage ./better_thermostat {};
|
||||
|
||||
elevenlabs_tts = callPackage ./elevenlabs_tts {};
|
||||
|
||||
emporia_vue = callPackage ./emporia_vue {};
|
||||
|
||||
epex_spot = callPackage ./epex_spot {};
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildHomeAssistantComponent,
|
||||
}:
|
||||
|
||||
buildHomeAssistantComponent rec {
|
||||
owner = "carleeno";
|
||||
domain = "elevenlabs_tts";
|
||||
version = "2.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "carleeno";
|
||||
repo = "elevenlabs_tts";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-7/Di3K7b0IzxatqBXqgVeMziRwalOVmIJ5IuEWJVjkE=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
changelog = "https://github.com/carleeno/elevenlabs_tts/releases/tag/${version}";
|
||||
description = "Home Assistant Eleven Labs TTS Integration";
|
||||
homepage = "https://github.com/carleeno/elevenlabs_tts";
|
||||
maintainers = with maintainers; [ mindstorms6 ];
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user