home-assistant-custom-components.volvo_cars: init at 1.5.1 (#400542)

This commit is contained in:
Martin Weinelt 2025-04-21 19:47:17 +02:00 committed by GitHub
commit 22005dd1da
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,26 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
}:
buildHomeAssistantComponent rec {
owner = "thomasddn";
domain = "volvo_cars";
version = "1.5.1";
src = fetchFromGitHub {
owner = "thomasddn";
repo = "ha-volvo-cars";
tag = "v${version}";
hash = "sha256-UG/anp9ThEOQsRWraTayuyx6kS9r2vTH/8Bak4ZzYzo";
};
meta = with lib; {
changelog = "https://github.com/thomasddn/ha-volvo-cars/releases/tag/${src.tag}";
homepage = "https://github.com/thomasddn/ha-volvo-cars";
description = "Volvo Cars Home Assistant integration";
maintainers = with maintainers; [ seberm ];
license = licenses.gpl3Only;
};
}