Unverified Commit 61c7ae41 authored by Robert Schütz's avatar Robert Schütz Committed by GitHub
Browse files

home-assistant-custom-components.climate_group: init at 1.0.7 (#352265)

parents 3a0187e0 1568fe94
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  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;
  };
}