mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 20:25:32 +03:00
home-assistant-custom-components.volvo_cars: init at 1.5.1 (#400542)
This commit is contained in:
commit
22005dd1da
1 changed files with 26 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue