Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
26 lines
694 B
Nix
26 lines
694 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildHomeAssistantComponent,
|
|
}:
|
|
buildHomeAssistantComponent rec {
|
|
owner = "bjrnptrsn";
|
|
domain = "climate_group";
|
|
version = "1.0.8";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit owner;
|
|
repo = "climate_group";
|
|
tag = version;
|
|
hash = "sha256-HwMHhrmQ+fbdLHQAM+ka/1oNCIBFaLTqOlPMzCEEeQ0=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|