home-assistant-custom-components.climate_group: init at 1.0.7

This commit is contained in:
Jamie Magee 2024-10-29 20:13:53 -07:00
parent 42fc6cd73e
commit 1568fe94f2

View File

@ -0,0 +1,27 @@
{
lib,
fetchFromGitHub,
buildHomeAssistantComponent,
}:
buildHomeAssistantComponent rec {
owner = "bjrnptrsn";
domain = "climate_group";
version = "1.0.7";
src = fetchFromGitHub {
inherit owner;
repo = "climate_group";
rev = "refs/tags/${version}";
hash = "sha256-f/VQUNzRSxmKGNgijaafQ5NbngUUKmcdkafYC3Ol9qM=";
};
dontBuild = true;
meta = {
changelog = "https://github.com/bjrnptrsn/climate_group/blob/${src.rev}/README.md#changelog";
description = "Group multiple climate devices to a single entity";
homepage = "https://github.com/bjrnptrsn/climate_group";
maintainers = builtins.attrValues { inherit (lib.maintainers) jamiemagee; };
license = lib.licenses.mit;
};
}